summaryrefslogtreecommitdiff
path: root/test.toc
diff options
context:
space:
mode:
Diffstat (limited to 'test.toc')
-rw-r--r--test.toc8
1 files changed, 2 insertions, 6 deletions
diff --git a/test.toc b/test.toc
index b876e96..e93cfb4 100644
--- a/test.toc
+++ b/test.toc
@@ -1,10 +1,6 @@
main @= fn() {
- // b := !(5 > 3 && 4 <= 3 && 3 >= 2 || 0 == 1 || 5 != 3);
- N, M @= 2;
- foo := 3;
- bar : float = foo as float;
- test @= fn(x : i64, y : i32, z,w: i64) i32 {
- x + (y as i64) + z + w + x as i32
+ test @= fn(x : i64, y : i32, z,w: i64) ret1 : i64, ret2 : i64 {
+ ret1 = x;
};
};