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,8 @@
type rec: [integer: x; integer: y]
entry(arg) := {
[rec: w]
w := reserve w;
w := release (w);
return 0;
}