You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function please_return does not terminate (julia hangs forever) for version 1.10.5. It does terminate and returns the expected result in version 1.11.0 though.
Output:
julia> versioninfo()
Julia Version 1.10.5
Commit 6f3fdf7b362 (2024-08-27 14:19 UTC)
Build Info:
Official https://julialang.org/ release
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU: 16 × 12th Gen Intel(R) Core(TM) i5-1240P
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-15.0.7 (ORCJIT, alderlake)
Threads: 1 default, 0 interactive, 1 GC (on 16 virtual cores)
julia> include("./nestedtuples.jl")
<<<hangs forever>>>
For comparison the output of 1.11:
julia> versioninfo()
Julia Version 1.11.0
Commit 501a4f25c2b (2024-10-07 11:40 UTC)
Build Info:
Official https://julialang.org/ release
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU: 16 × 12th Gen Intel(R) Core(TM) i5-1240P
WORD_SIZE: 64
LLVM: libLLVM-16.0.6 (ORCJIT, alderlake)
Threads: 1 default, 0 interactive, 1 GC (on 16 virtual cores)
julia> include("./nestedtuples.jl")
please_return() = (((), ()), ())
(((), ()), ())
Is this a known bug/feature?
The text was updated successfully, but these errors were encountered:
This was likely fixed by some combination of #55757, #50927, and #53876. @Keno, @vtjnash any opinions on the backport-ability of these?
oscardssmith
changed the title
Nested tuple construction hangs forever in 1.10.5
Nested tuple construction hangs forever in 1.10 and earlier
Oct 8, 2024
Take the following test file
nestedtuples.jl
:The function
please_return
does not terminate (julia hangs forever) for version 1.10.5. It does terminate and returns the expected result in version 1.11.0 though.Output:
For comparison the output of 1.11:
Is this a known bug/feature?
The text was updated successfully, but these errors were encountered: