lean4-htt/tests/lean/wfrecUnusedLet.lean.expected.out
Leonardo de Moura 97e7e668d6
chore: pp.proofs.withType is now false by default (#3379)
`pp.proofs.withType := true` often produces too much noise in the info
view.
2024-02-17 15:09:24 +00:00

6 lines
128 B
Text

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