aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/strange.sy
diff options
context:
space:
mode:
Diffstat (limited to 'progs/tests/strange.sy')
-rw-r--r--progs/tests/strange.sy15
1 files changed, 15 insertions, 0 deletions
diff --git a/progs/tests/strange.sy b/progs/tests/strange.sy
new file mode 100644
index 0000000..b6aad0f
--- /dev/null
+++ b/progs/tests/strange.sy
@@ -0,0 +1,15 @@
+start :: fn {
+
+ a := 0
+ {
+ b := 99999
+ {
+ a := 99999
+ a
+ }
+ b
+ a -= 1
+ }
+ a <=> -1
+
+}