Add a test for a large mutual recursion

This commit is contained in:
Sam Vervaeck 2023-08-10 13:16:24 +02:00
parent 935420d418
commit b08bdbc6f7
Signed by: samvv
SSH key fingerprint: SHA256:dIg0ywU1OP+ZYifrYxy8c5esO72cIKB+4/9wkZj1VaY

View 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