Fix invalid pointer in struct type, more work on calls

This commit is contained in:
Krzosa Karol
2022-05-30 11:20:00 +02:00
parent 671853287a
commit b2d3e9d8e1
4 changed files with 17 additions and 5 deletions

View File

@@ -21,4 +21,10 @@ with_type: Arena = thing
pointer := &with_type
deref := *pointer
arena := Arena(
next = 0,
data = 0,
len = 1000,
cap = 1000,
)