-
-
Save Lysxia/e3fe8d97327bc2df70594233cd438882 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
| Inductive unitS : unit -> Type := ttS : unitS tt. | |
| Definition ttS_unique : forall x, x = ttS := | |
| fun x => | |
| match x in unitS uu | |
| return match uu return unitS uu -> _ with | |
| | tt => fun x => x = ttS | |
| end x | |
| with | |
| | ttS => eq_refl | |
| end. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment