Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Inductive PBox : Prop :=
- | wrap : forall P:Prop, P -> PBox.
- Inductive TBox : Type :=
- | wrap_t : forall T:Type, T -> TBox.
- Check (wrap PBox).
- Fail Check (wrap_t TBox).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement