lean4-htt/tests/lean/unusedLet.lean.expected.out
Joachim Breitner 871c9b4164
test: update test output following stage0 update (#4815)
this is a consequenc of #4807 that only shows up once that change made
it to stage0, it seem.
2024-07-23 21:43:38 +00:00

12 lines
256 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
| n.succ => fun x =>
let y := 42;
2 * x.1)
f