The new test exposes the bug. The bug is similar to the one at `simp [h] at *` described at issue #1675
7 lines
137 B
Text
7 lines
137 B
Text
def f (x : nat) := x
|
|
|
|
example (a b : nat) (h₁ : a = b) (h₂ : a = 0) : b = f 0 :=
|
|
begin
|
|
simp [h₁] at a h₂,
|
|
simp [h₂, f]
|
|
end
|