-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
active_reg_inner
crashes on Tuple{X} where {X}
#1923
Comments
julia> T = (Vector{Tuple{Code}} where {Code<:Integer})
Array{Tuple{Code}, 1} where Code<:Integer
julia> eltype(T)
Any
julia> @inline ptreltype(::Type{Array{T,N}}) where {T,N} = T
ptreltype (generic function with 1 method)
julia> ptreltype(T)
ERROR: UndefVarError: `T` not defined
Stacktrace:
[1] ptreltype(::Type{Array{Tuple{Code}, 1} where Code<:Integer})
@ Main ./REPL[6]:1
[2] top-level scope
@ REPL[7]:1 |
seems like a julia issue: JuliaLang/julia#55933 |
The fix has been identified and seems like it will appear in Julia Should we close this? |
Was a julia bug which is fixed, closing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you run this code:
it fails like this:
The text was updated successfully, but these errors were encountered: