Description
The following code crashes Julia
using Test
import Pkg
Pkg.add("Manifolds")
using Manifolds
@testset "Julia crash" for M in
[
Sphere(2),
]
@test_throws TypeError [] isa Vector{<:Sphere(3)}
end
See a discussion in this issue and a reproduction of the problem in this repo.