This commit fixes reported at https://leanprover.zulipchat.com/#narrow/stream/270676-lean4/topic/unused.20let.20disappears/near/257528105
11 lines
123 B
Text
11 lines
123 B
Text
def pro := let x := 42; false
|
|
|
|
#print pro
|
|
|
|
def f : Nat → Nat
|
|
| 0 => 1
|
|
| n+1 =>
|
|
let y := 42
|
|
2 * f n
|
|
|
|
#print f
|