fix interop and indexing oversights

This commit is contained in:
2026-07-01 09:08:58 +02:00
parent 7fe3552c01
commit 870f946b52
15 changed files with 593 additions and 116 deletions
@@ -0,0 +1,6 @@
main func() i32 {
items [3]mut i32 = undefined
i i32 = 1
items[i] = 42
return 0
}