Skip to content

Commit

Permalink
add test for code that used to crash, #17003 (#22081)
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferC authored May 26, 2017
1 parent 64cb7e0 commit 8c19eec
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions test/inference.jl
Original file line number Diff line number Diff line change
Expand Up @@ -778,6 +778,25 @@ function break_21369()
end
@test_throws ErrorException break_21369() # not TypeError

# issue #17003
abstract type AArray_17003{T,N} end
AVector_17003{T} = AArray_17003{T,1}

struct Nable_17003{T}
end

struct NArray_17003{T,N} <: AArray_17003{Nable_17003{T},N}
end

(::Type{NArray_17003}){T,N}(::Array{T,N}) = NArray_17003{T,N}()

gl_17003 = [1, 2, 3]

f2_17003(item::AVector_17003) = nothing
f2_17003(::Any) = f2_17003(NArray_17003(gl_17003))

@test f2_17003(1) == nothing

# issue #20847
function segfaultfunction_20847{N, T}(A::Vector{NTuple{N, T}})
B = reinterpret(T, A, (N, length(A)))
Expand Down

0 comments on commit 8c19eec

Please sign in to comment.