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.
import tactic.apply
import data.set.basic
example {α : Type*} (a b : set α) : a ⊆ b :=
by refl' -- closes the goal-- by apply' set.subset.refl -- same behavior
Note, the following script shows that refl' (or apply') really makes no progress, and therefore should fail instead.
by { refl', recover, change a ⊆ b, }
The text was updated successfully, but these errors were encountered:
Example
Note, the following script shows that
refl'
(orapply'
) really makes no progress, and therefore should fail instead.The text was updated successfully, but these errors were encountered: