Skip to content

Instantly share code, notes, and snippets.

@donovancrichton
Created August 4, 2020 05:39
Show Gist options
  • Save donovancrichton/53c8b6519637a7facc3ce663857d2a29 to your computer and use it in GitHub Desktop.
Save donovancrichton/53c8b6519637a7facc3ce663857d2a29 to your computer and use it in GitHub Desktop.
Error when parsing let expressions of equality types.
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