Created
August 4, 2020 05:39
-
-
Save donovancrichton/53c8b6519637a7facc3ce663857d2a29 to your computer and use it in GitHub Desktop.
Error when parsing let expressions of equality types.
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
f : (n : Nat) -> n = n + 0 | |
f 0 = Refl | |
f (S k) = | |
let ih : k = plus k 0 | |
ih = f k | |
in rewrite sym ih in Refl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment