Skip to content
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

Keyword arguments can be placed anywhere in a function call #54481

Closed
prbzrg opened this issue May 15, 2024 · 1 comment
Closed

Keyword arguments can be placed anywhere in a function call #54481

prbzrg opened this issue May 15, 2024 · 1 comment

Comments

@prbzrg
Copy link
Contributor

prbzrg commented May 15, 2024

Is this intended?

julia> cat(dims=1, ones(3), zeros(3))
6-element Vector{Float64}:
 1.0
 1.0
 1.0
 0.0
 0.0
 0.0

julia> cat(ones(3), dims=1, zeros(3))
6-element Vector{Float64}:
 1.0
 1.0
 1.0
 0.0
 0.0
 0.0
Julia Version 1.10.3
Commit 0b4590a550 (2024-04-30 10:59 UTC)
Build Info:
  Official https://julialang.org/ release
Platform Info:
  OS: Windows (x86_64-w64-mingw32)
  CPU: 12 × Intel(R) Core(TM) i7-10750H CPU @ 2.60GHz
  WORD_SIZE: 64
  LIBM: libopenlibm
  LLVM: libLLVM-15.0.7 (ORCJIT, skylake)
Threads: 12 default, 2 interactive, 7 GC (on 12 virtual cores)
@adienes
Copy link
Contributor

adienes commented May 15, 2024

duplicate of #37589

@prbzrg prbzrg closed this as not planned Won't fix, can't repro, duplicate, stale May 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants