aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/HoTT_coq_052.v
blob: dac575b54136642ae1ac96bb18dbf8cc3afe6921 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Goal Type = Type.
  match goal with |- ?x = ?x => idtac end.
Abort.

Goal Prop.
  Fail match goal with |- Type => idtac end.
Abort.

Goal Prop = Set.
  Fail match goal with |- ?x = ?x => idtac end.
Abort.

Goal Type = Prop.
  Fail match goal with |- ?x = ?x => idtac end.
Abort.

Goal Type = Set.
  Fail match goal with |- ?x = ?x => idtac end.
Abort.