summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/3300.v
blob: a28144b9cae4943d1f76ca33aa8c4d138d3759aa (plain)
1
2
3
4
5
6
7
Set Primitive Projections.
Record Box (T : Type) : Prop := wrap {prop : T}.

Definition down (x : Type) : Prop := Box x.
Definition up (x : Prop) : Type := x.

Fail Definition back A : up (down A) -> A := @prop A.