diff --git a/local_tests/phase6_ref_set_get.nyash b/local_tests/phase6_ref_set_get.nyash new file mode 100644 index 00000000..1f3f0c84 --- /dev/null +++ b/local_tests/phase6_ref_set_get.nyash @@ -0,0 +1,9 @@ +static box Main { + main() { + local o + o = new Obj() + o.x = 1 + print(o.x) + return o.x + } +}