Typedefs and structs with inline types supporting lengthof would not work with lengthof #2641.

This commit is contained in:
Christoffer Lerno
2025-12-12 20:57:32 +01:00
parent 475816251b
commit 15662bd32f
3 changed files with 32 additions and 1 deletions

View File

@@ -16,6 +16,7 @@
- Subscripting of constant slices would sometimes be considered non-constant #2635.
- Compiler crash when concatenating structs and arrays to an untyped list.
- Strings assigned to longer arrays would crash codegen, e.g. `char[10] x = "abcd`.
- Typedefs and structs with inline types supporting lengthof would not work with lengthof #2641.
### Stdlib changes
- Add `ThreadPool` join function to wait for all threads to finish in the pool without destroying the threads.