lean4-htt/tests/lean/run/nested_common_subexpr_issue.lean
2017-03-09 18:41:19 -08:00

17 lines
332 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- set_option trace.compiler true
def fib_aux : ×
| 0 := (0, 1)
| (n+1) := let p := fib_aux n in (p.2, p.1 + p.2)
def fib n := (fib_aux n).2
#eval fib 10000
def fib_aux2 : ×
| 0 := (0, 1)
| (n+1) := let (a, b) := fib_aux2 n in (b, a + b)
def fib2 n := (fib_aux2 n).2
#eval fib2 10000