Created
June 10, 2011 21:12
-
-
Save kik/1019788 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
| Definition foo (x : bool) (e : x = true) := tt. | |
| Definition bar (x : bool) : unit := | |
| match x as y return x = y -> unit with | |
| | true => fun e => foo x e | |
| | false => fun _ => tt | |
| end (eq_refl x). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment