Created
December 6, 2018 04:17
-
-
Save andres-erbsen/889c559cc7b4096a7e284eae3989bf1f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ltac fork := | |
multimatch constr:(Set) with | |
| _ => true | |
| _ => false | |
end. | |
Goal True. | |
let x := fork in | |
idtac x; | |
unify x false. | |
(* true *) | |
(* false *) | |
Abort. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment