diff options
| author | WormHeamer | 2025-08-07 04:20:47 -0400 |
|---|---|---|
| committer | WormHeamer | 2025-08-07 04:20:47 -0400 |
| commit | 9c8861a1ad58954f40d599c83405c720e0d2e07b (patch) | |
| tree | 0e32a2007a3e5e130ba910d8d06d8d6d4c2930c6 /test.lang | |
| parent | 739b4852d2a826ba2985c7db2f5c778050f72250 (diff) | |
fix region nodes being culled prematurely
Diffstat (limited to 'test.lang')
| -rw-r--r-- | test.lang | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,6 +1,8 @@ -proc main(a, b i64) { +func main(a, b i64) i64 { if a = b { - b := 3 + let t = a + a := b + b := t } - return a + return a + b } |
