✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following code snippet:
example : ∀ x y : A, x = y → PP x → PP y :=
begin
assume x y eq p,
rewrite ← eq,
exact p,
end
What is the effect of rewrite← eq in this proof?