aboutsummaryrefslogtreecommitdiff
path: root/test/functions.tm
diff options
context:
space:
mode:
Diffstat (limited to 'test/functions.tm')
-rw-r--r--test/functions.tm4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functions.tm b/test/functions.tm
index 426c33b1..22d950d4 100644
--- a/test/functions.tm
+++ b/test/functions.tm
@@ -1,7 +1,7 @@
-func add(x:Int, y:Int)->Int:
+func add(x:Int, y:Int -> Int):
return x + y
-func cached_heap(x:Int; cached)->@Int:
+func cached_heap(x:Int->@Int; cached):
return @x
func main():