You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
In the following example, nth_rewrite incorrectly instantiates the universe metavariable of h with 0, but still rewrites with the hypothesis. Note that rw does this correctly.
deffoo (h : ∀ {α : Type*} (x : α), id x = x) : id tt = tt :=
begin
nth_rewrite 0 [h], -- error in resulting proof term-- rw [h], -- worksend
The text was updated successfully, but these errors were encountered:
In the following example,
nth_rewrite
incorrectly instantiates the universe metavariable ofh
with0
, but still rewrites with the hypothesis. Note thatrw
does this correctly.The text was updated successfully, but these errors were encountered: