-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Confusing deprecation warning #10896
Comments
The splat ( julia> Any[1, (1,2)...]
3-element Array{Any,1}:
1
1
2
julia> [1, (1,2)...]
3-element Array{Int64,1}:
1
1
2 |
Oh, I see. So the I guess I'm just unlucky to hit it with just the right form of input and confused about what it is talking about..... |
You got it! |
= = ..... Glad to see that I'm not the only one who is confused by the usage of |
See below. Are
{a,b, ...}
orAny[a,b, ...]
valid syntax ever?The text was updated successfully, but these errors were encountered: