Add a test for a large mutual recursion
This commit is contained in:
parent
935420d418
commit
b08bdbc6f7
1 changed files with 6 additions and 0 deletions
6
test/checker/forward_recursion.bolt
Normal file
6
test/checker/forward_recursion.bolt
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
let foo n = @:Int foo_1 n
|
||||
let foo_1 n = @:Int foo_2 n
|
||||
let foo_2 n = foo n + foo_1 n
|
||||
|
||||
@:Int foo 1
|
Loading…
Reference in a new issue