summaryrefslogtreecommitdiff
path: root/test-suite/bugs/opened/4813.v
blob: b75170179b3c93820ec60bfade818434801f40d8 (plain)
1
2
3
4
5
(* An example one would like to see succeeding *)

Record T := BT { t : Set }.
Record U (x : T) := BU { u : t x -> Prop }.
Fail Definition A (H : unit -> Prop) : U (BT unit) := BU _ H.