diff options
| author | Pierre-Marie Pédrot | 2020-02-10 17:28:02 +0100 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2020-02-19 14:26:24 +0100 |
| commit | 059da3541f54311283067cb3010b539506cb70bd (patch) | |
| tree | ea78291cb2acc14d76e0d91c802334ad3600f17c /test-suite | |
| parent | 43c3c7d6f62a9bee4772242c27fbafd54770d271 (diff) | |
Fix #11549: Ltac2 is incompatible with $.
We use the same kind of trick as the one we used for &IDENT, namely check
that no space appear between the dollar sign and the identifier.
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/bug_11549.v | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_11549.v b/test-suite/bugs/closed/bug_11549.v new file mode 100644 index 0000000000..7608e1c4d8 --- /dev/null +++ b/test-suite/bugs/closed/bug_11549.v @@ -0,0 +1,5 @@ +From Ltac2 Require Ltac2. + +Notation "t $ r" := (t r) + (at level 65, right associativity, only parsing). +Check S $ O. |
