mirror of
https://github.com/ziglang/zig.git
synced 2026-01-04 12:33:19 +00:00
This allows us to differentiate between regular locals and variables that create multiple locals on the stack such as optionals and structs. Now `struct_a = struct_b;` works and only updates a reference, rather than update all local's values. Also created more test cases to test against this.