aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/auto/constant_function_closure.sy
diff options
context:
space:
mode:
Diffstat (limited to 'progs/tests/auto/constant_function_closure.sy')
-rw-r--r--progs/tests/auto/constant_function_closure.sy13
1 files changed, 0 insertions, 13 deletions
diff --git a/progs/tests/auto/constant_function_closure.sy b/progs/tests/auto/constant_function_closure.sy
deleted file mode 100644
index 6c7f0d7..0000000
--- a/progs/tests/auto/constant_function_closure.sy
+++ /dev/null
@@ -1,13 +0,0 @@
-q : int = 1
-
-f :: fn -> int {
- q += 1
- ret q
-}
-
-start :: fn {
- f() <=> 2
- f() <=> 3
- f() <=> 4
- f() <=> 5
-}