File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -1362,11 +1362,14 @@ end
1362
1362
@test Vector {Tuple{Any}} () isa Vector{Tuple{>: Int }}
1363
1363
@test Vector {Tuple{>:Int}} () isa Vector{Tuple{Any}}
1364
1364
@test Vector{Tuple{Any}} == Vector{Tuple{>: Int }}
1365
+ @test_broken Vector{Vector{Tuple{Any}}} == Vector{Vector{Tuple{>: Int }}}
1365
1366
f25430 (t:: Vector{Tuple{Any}} ) = true
1366
1367
g25430 (t:: Vector{Tuple{>:Int}} ) = true
1367
1368
@test f25430 (Vector {Tuple{>:Int}} ())
1368
1369
@test g25430 (Vector {Tuple{Any}} ())
1369
1370
@testintersect (Vector{Tuple{>: Int }}, Vector{Tuple{Any}}, Vector{Tuple{Any}})
1371
+ # @testintersect(Vector{Vector{Tuple{>:Int}}}, Vector{Vector{Tuple{Any}}}, Vector{Vector{Tuple{Any}}})
1372
+ @test_broken typeintersect (Vector{Vector{Tuple{>: Int }}}, Vector{Vector{Tuple{Any}}}) == Vector{Vector{Tuple{Any}}}
1370
1373
1371
1374
# issue #24521
1372
1375
g24521 (:: T , :: T ) where {T} = T
You can’t perform that action at this time.
0 commit comments