summaryrefslogtreecommitdiff
path: root/test-suite/success/Case8.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/success/Case8.v')
-rw-r--r--test-suite/success/Case8.v11
1 files changed, 11 insertions, 0 deletions
diff --git a/test-suite/success/Case8.v b/test-suite/success/Case8.v
new file mode 100644
index 00000000..a6113ab9
--- /dev/null
+++ b/test-suite/success/Case8.v
@@ -0,0 +1,11 @@
+(* Check dependencies in the matching predicate (was failing in V8.0pl1) *)
+
+Inductive t : forall x : 0 = 0, x = x -> Prop :=
+ c : forall x : 0 = 0, t x (refl_equal x).
+
+Definition a (x : t _ (refl_equal (refl_equal 0))) :=
+ match x return match x with
+ | c y => Prop
+ end with
+ | c y => y = y
+ end.