diff options
| author | Emilio Jesus Gallego Arias | 2019-12-10 17:30:49 +0100 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2019-12-10 17:30:49 +0100 |
| commit | 79f9e907fa4cc0e8862c4b678d60d8409a6cc88e (patch) | |
| tree | 1e2c7b9df5a3bea410d784e9c6d9d9981372c486 /test-suite/bugs | |
| parent | 0fa2d49c6fe110a61811c8305c735342dc717213 (diff) | |
| parent | 19b1345540fcd577fa0322791cd25a8e36b5c71f (diff) | |
Merge PR #10202: Slightly more robust manual implicit arguments
Reviewed-by: ejgallego
Diffstat (limited to 'test-suite/bugs')
| -rw-r--r-- | test-suite/bugs/opened/bug_3357.v | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test-suite/bugs/opened/bug_3357.v b/test-suite/bugs/opened/bug_3357.v index c479158877..f0e5d71811 100644 --- a/test-suite/bugs/opened/bug_3357.v +++ b/test-suite/bugs/opened/bug_3357.v @@ -1,4 +1,9 @@ -Notation D1 := (forall {T : Type} ( x : T ) , Type). +(* See discussion in #668 for whether manual implicit arguments should + be allowed in notations or not *) + +Set Warnings "+syntax". + +Fail Notation D1 := (forall {T : Type} ( x : T ) , Type). Definition DD1 ( A : forall {T : Type} (x : T), Type ) := A 1. Fail Definition DD1' ( A : D1 ) := A 1. (* Toplevel input, characters 32-33: |
