diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2020-03-27 21:24:32 -0400 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2020-03-27 21:24:32 -0400 |
commit | 0848ff3bb41572d2e850360f220369ccd62c715b (patch) | |
tree | f94fc3f9a549fce6ce226729d47baf0e5285dd01 /tests | |
parent | 7cf5a8735ecbd37faf5e9f740d5f1a49939eea07 (diff) |
removed StructDef.constants
Diffstat (limited to 'tests')
-rw-r--r-- | tests/misc.toc | 11 | ||||
-rw-r--r-- | tests/misc_expected | 2 |
2 files changed, 13 insertions, 0 deletions
diff --git a/tests/misc.toc b/tests/misc.toc index a9f6dc1..26ecf3e 100644 --- a/tests/misc.toc +++ b/tests/misc.toc @@ -25,5 +25,16 @@ main ::= fn() { a[1] = y; a[2] = z; }; + + s ::= struct { + foo, e: int; + bar ::= 3; + baz: float; + } + + p: s; + p.e = 100; + io.puti(p["bar"]); + io.puti(p["e"]); }; diff --git a/tests/misc_expected b/tests/misc_expected index 92e0278..e35eecf 100644 --- a/tests/misc_expected +++ b/tests/misc_expected @@ -2,3 +2,5 @@ Hello! 116 6 0 +3 +100 |