aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/4328.v
diff options
context:
space:
mode:
authorGravatar Matthieu Sozeau <matthieu.sozeau@inria.fr>2015-09-23 18:53:35 +0200
committerGravatar Matthieu Sozeau <mattam@mattam.org>2015-10-02 15:54:11 +0200
commit91e01278de2420a64f1c8de03c0bc6e614577042 (patch)
tree759e189e430076511069e272901550aa96ec93b7 /test-suite/bugs/closed/4328.v
parent91b1808056602f3e26d1eb1bdf7be1e791cb742d (diff)
Univs: fixed bug #4328.
Diffstat (limited to 'test-suite/bugs/closed/4328.v')
-rw-r--r--test-suite/bugs/closed/4328.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/4328.v b/test-suite/bugs/closed/4328.v
new file mode 100644
index 000000000..8e1bb3100
--- /dev/null
+++ b/test-suite/bugs/closed/4328.v
@@ -0,0 +1,6 @@
+Inductive M (A:Type) : Type := M'.
+Axiom pi : forall (P : Prop) (p : P), Prop.
+Definition test1 A (x : _) := pi A x. (* success *)
+Fail Definition test2 A (x : A) := pi A x. (* failure ??? *)
+Fail Definition test3 A (x : A) (_ : M A) := pi A x. (* failure *)
+Fail Definition test4 A (_ : M A) (x : A) := pi A x. (* success ??? *) \ No newline at end of file