Skip to content

Commit 5aa5e82

Browse files
committed
Add two broken tests to subtype.jl still failing
1 parent 1269161 commit 5aa5e82

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/subtype.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1362,11 +1362,14 @@ end
13621362
@test Vector{Tuple{Any}}() isa Vector{Tuple{>:Int}}
13631363
@test Vector{Tuple{>:Int}}() isa Vector{Tuple{Any}}
13641364
@test Vector{Tuple{Any}} == Vector{Tuple{>:Int}}
1365+
@test_broken Vector{Vector{Tuple{Any}}} == Vector{Vector{Tuple{>:Int}}}
13651366
f25430(t::Vector{Tuple{Any}}) = true
13661367
g25430(t::Vector{Tuple{>:Int}}) = true
13671368
@test f25430(Vector{Tuple{>:Int}}())
13681369
@test g25430(Vector{Tuple{Any}}())
13691370
@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}}}
13701373

13711374
# issue #24521
13721375
g24521(::T, ::T) where {T} = T

0 commit comments

Comments
 (0)