-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Open
Labels
types and dispatchTypes, subtyping and method dispatchTypes, subtyping and method dispatch
Description
Reported on discourse:
Julia 1.6.5
julia> const FormArgs{T, K} = Vararg{T, K}
Vararg{T, K} where {T, K}
julia> FormArgs{Int, 2}
Vararg{Int64, 2}
Julia 1.7.2
julia> const FormArgs{T, K} = Vararg{T, K}
Vararg{Any}
julia> FormArgs{Int, 2}
ERROR: ArgumentError: apply_type: too many arguments (expected 2)
Stacktrace:
[1] top-level scope
@ REPL[2]:1
nchisholm
Metadata
Metadata
Assignees
Labels
types and dispatchTypes, subtyping and method dispatchTypes, subtyping and method dispatch