Advertisement
tinyevil

Untitled

Feb 24th, 2018
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. Inductive Fail :=
  2. | ev : (Fail->nat) -> Fail.
  3.  
  4. Definition foo (f:Fail) : nat
  5. match f with
  6. | ev fn => fn f
  7. end.
  8.  
  9. Definition foo1 := ev foo.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement