lean4-htt/old_tests/tests/lean/run/vm_check_bug.lean
2018-04-10 12:56:55 -07:00

7 lines
136 B
Text

def f : nat → nat → nat
| (x+1) (y+1) := f (x+100000000) y
| (x+1) 0 := x
| 0 (y+1) := 1
| 0 0 := 1
#eval f 1 1000