We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56f2040 commit 89720e9Copy full SHA for 89720e9
test/worlds.jl
@@ -275,11 +275,11 @@ applyf(Any[1])
275
wany3 = worlds(instance(applyf, (Vector{Any},)))
276
src3 = code_typed(applyf, (Vector{Any},))[1]
277
@test (wany3 == wany2) == equal(src3, src2) # don't invalidate unless you also change the code
278
-f(::Vector{Int}) = 4
+f(::AbstractVector) = 4 # next test would pass if this were ::Vector{Int}
279
applyf(Any[1])
280
wany4 = worlds(instance(applyf, (Vector{Any},)))
281
src4 = code_typed(applyf, (Vector{Any},))[1]
282
-@test (wany4 == wany3) == equal(src4, src3)
+@test_broken (wany4 == wany3) == equal(src4, src3)
283
f(::Dict) = 5
284
285
wany5 = worlds(instance(applyf, (Vector{Any},)))
0 commit comments