Skip to content

Instantly share code, notes, and snippets.

@tsani
Created February 26, 2019 21:05
Show Gist options
  • Save tsani/dbcfe2ee681822e2db881e6326451481 to your computer and use it in GitHub Desktop.
Save tsani/dbcfe2ee681822e2db881e6326451481 to your computer and use it in GitHub Desktop.
module false
%default total
data V : Type where
Lam : ({a : Type} -> a -> a) -> V
t : V
t = Lam id
bad : V -> a
bad (Lam f) = bad (f (Lam f))
false : Void
false = bad t
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment