summaryrefslogtreecommitdiff
path: root/test.toc
diff options
context:
space:
mode:
Diffstat (limited to 'test.toc')
-rw-r--r--test.toc14
1 files changed, 7 insertions, 7 deletions
diff --git a/test.toc b/test.toc
index e7808fe..acffe96 100644
--- a/test.toc
+++ b/test.toc
@@ -21,17 +21,17 @@ total @= fn() int {
t
};
-// Foo @= struct {
-// x: &Bar;
-// };
+Foo @= struct {
+ x: &Bar;
+};
-// Bar @= struct {
-// y : &Foo;
-// };
+Bar @= struct {
+ y : &Foo;
+};
main @= fn() {
- // f: Foo;
+ f: Foo;
puti(total());
X @= total();