added tests for assignable and memory

This commit is contained in:
Annie
2025-03-11 15:37:05 -04:00
parent 2035221373
commit acd51dee98
4 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,10 @@
type rec: [integer: x; integer: y]
entry(arg) := {
[rec: w]
w := reserve w;
w.x := 1;
w.y := 2;
w.z := 3;
return 0;
}