Accidentially, I wrote the wrong type parameter in an NTuple property, but I didn't get an error when I constructed an instance. Is this intentional, a bug or somewhere between
type test{T}
data::NTuple{T,Int}
end
julia> test{Float64}((1,2,3))
test{Float64}((1,2,3))
This is latest master.
