From 1d8ce1dcc22a3f14b032d8be3e8a88a8cdbb538c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Sun, 7 Mar 2021 15:49:01 +0100 Subject: remove double test --- progs/tests/global_constants_edgecase.sy | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 progs/tests/global_constants_edgecase.sy (limited to 'progs/tests') diff --git a/progs/tests/global_constants_edgecase.sy b/progs/tests/global_constants_edgecase.sy deleted file mode 100644 index 8dba295..0000000 --- a/progs/tests/global_constants_edgecase.sy +++ /dev/null @@ -1,11 +0,0 @@ -// TODO(ed): Pure functions -fac :: fn a: int -> int { - if a < 1 { ret 1 } - ret a * fac! a - 1 -} - -a :: fac! 4 - -start :: fn { - a <=> 24 -} -- cgit v1.2.1