lean4-htt/tests/lean/unusedLet.lean.expected.out
Leonardo de Moura 764a1d9f51 chore: fix tests
2022-02-14 15:47:12 -08:00

12 lines
266 B
Text

def pro : Bool :=
let x := 42;
false
def f : Nat → Nat :=
fun x =>
Nat.brecOn x fun x f =>
(match (motive := (x : Nat) → Nat.below x → Nat) x with
| 0 => fun x => 1
| Nat.succ n => fun x =>
let y := 42;
2 * x.fst.fst)
f