lean4-htt/tests/lean/introLetBug.lean
2022-06-22 16:10:33 -07:00

9 lines
167 B
Text

def f (n : Nat) := n + 1
example (k : Nat) : let x := 10; f x = k := by
have : f 10 = 11 := rfl
intro x
rw [this]
trace_state
revert x
trace_state
sorry