test(local): add Phase 6 VM sample (ref set/get) for acceptance run

This commit is contained in:
Moe Charm
2025-08-13 19:33:34 +09:00
parent 5cbd8a7f82
commit c5e784ca38

View File

@ -0,0 +1,9 @@
static box Main {
main() {
local o
o = new Obj()
o.x = 1
print(o.x)
return o.x
}
}