diff options
| author | Hugo Herbelin | 2015-02-10 19:58:16 +0100 |
|---|---|---|
| committer | Hugo Herbelin | 2015-02-10 19:58:16 +0100 |
| commit | 02d2cdf61f6c6a37a1bda25d738a0d189a4021a6 (patch) | |
| tree | 27c4ad78adef28a572c8b9f1f41c984fc88b18da /test-suite | |
| parent | 9a1aee03d864216a90610e8bf73539ddd60c395b (diff) | |
Fixing #4017, #3726 (use of implicit arguments was lost in multiple variable declarations).
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/4017.v | 6 |
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 0000000000..a6f177b496 --- /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). |
