Skip to content

Commit 9534147

Browse files
authored
fix prefix IntrusiveLinkedList with Base in a REPL test util (#59782)
1 parent eb4006b commit 9534147

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/REPL/test/repl.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function kill_timer(delay)
3232
# **DON'T COPY ME.**
3333
# The correct way to handle timeouts is to close the handle:
3434
# e.g. `close(stdout_read); close(stdin_write)`
35-
test_task.queue === nothing || Base.list_deletefirst!(test_task.queue::IntrusiveLinkedList{Task}, test_task)
35+
test_task.queue === nothing || Base.list_deletefirst!(test_task.queue::Base.IntrusiveLinkedList{Task}, test_task)
3636
schedule(test_task, "hard kill repl test"; error=true)
3737
print(stderr, "WARNING: attempting hard kill of repl test after exceeding timeout\n")
3838
end

0 commit comments

Comments
 (0)