Skip to content

Commit 498aec3

Browse files
committed
Add test for JuliaLang#57772
1 parent 304aefa commit 498aec3

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

stdlib/REPL/test/replcompletions.jl

+12
Original file line numberDiff line numberDiff line change
@@ -2563,3 +2563,15 @@ let s = "CompletionFoo.test(iden"
25632563
@test "identity" in c
25642564
@test r == 20:23
25652565
end
2566+
2567+
# #57772
2568+
let s = "sum(!ismis"
2569+
c, r = test_complete(s)
2570+
@test "ismissing" in c
2571+
@test r == 6:10
2572+
end
2573+
let s = "sum(!!ismis"
2574+
c, r = test_complete(s)
2575+
@test "ismissing" in c
2576+
@test r == 7:11
2577+
end

0 commit comments

Comments
 (0)