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
Deprecated old inference with slice copy. Copying must now ensure a slicing operator at the end of the right hand side: foo[1..2] = bar[..] rather than the old foo[1..2] = bar. The old behaviour can be mostly retained with --use-old-slice-copy).
Added Enum.lookup and Enum.lookup_field.
c3c build picks first target rather than the first executable #2105.
New Win32 Mutex, ConditionVariable and OnceFlag implementation
Fixes
Trying to cast an enum to int and back caused the compiler to crash.
Incorrect rounding at compile time going from double to int.
Regression with invalid setup of the WASM temp allocator.
Correctly detect multiple overloads of the same type.
ABI bug on x64 Linux / MacOS when passing a union containing a struct of 3 floats. #2087
Bug with slice acces as inline struct member #2088.
@if now does implicit conversion to bool like $if. #2086