aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/4017.v
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2015-02-10 19:58:16 +0100
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2015-02-10 19:58:16 +0100
commit02d2cdf61f6c6a37a1bda25d738a0d189a4021a6 (patch)
tree27c4ad78adef28a572c8b9f1f41c984fc88b18da /test-suite/bugs/closed/4017.v
parent9a1aee03d864216a90610e8bf73539ddd60c395b (diff)
Fixing #4017, #3726 (use of implicit arguments was lost in multiple variable declarations).
Diffstat (limited to 'test-suite/bugs/closed/4017.v')
-rw-r--r--test-suite/bugs/closed/4017.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/4017.v b/test-suite/bugs/closed/4017.v
new file mode 100644
index 000000000..a6f177b49
--- /dev/null
+++ b/test-suite/bugs/closed/4017.v
@@ -0,0 +1,6 @@
+(* Use of implicit arguments was lost in multiple variable declarations *)
+Variables
+ (A1 : Type)
+ (A2 : forall (x1 : A1), Type)
+ (A3 : forall (x1 : A1) (x2 : A2 x1), Type)
+ (A4 : forall (x1 : A1) (x2 : A2 x1) (x3 : A3 x2), Type).