Advertisement
tinyevil

Untitled

Mar 7th, 2018
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. Inductive PBox : Prop :=
  2. | wrap : forall P:Prop, P -> PBox.
  3.  
  4. Inductive TBox : Type :=
  5. | wrap_t : forall T:Type, T -> TBox.
  6.  
  7. Check (wrap PBox).
  8.  
  9. Fail Check (wrap_t TBox).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement