lean4-htt/tests/lean/wfrecUnusedLet.lean.expected.out
Leonardo de Moura bb07a732e7
refactor: use mkAuxLemma in mkAuxTheorem (#7762)
cc @Kha

---------

Co-authored-by: Sebastian Ullrich <sebasti@nullri.ch>
2025-03-31 22:50:30 +00:00

6 lines
132 B
Text

@[irreducible] def f : Nat → Nat :=
f._proof_1.fix fun n a =>
if h : n = 0 then 1
else
let y := 42;
2 * a (n - 1) ⋯