diff options
| author | Maxime Dénès | 2017-11-29 12:56:44 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2017-11-29 12:56:44 +0100 |
| commit | 28dabf726be49bd47538642d1bae83990def4236 (patch) | |
| tree | de3c41e16b7864b8875ad77796911fb63e87b11d /test-suite | |
| parent | 5109763ca7d2a1469b392b271da7c1ed711d4258 (diff) | |
| parent | 7d0eb42050cb4f75c95cefb11c0cac5efa32f40a (diff) | |
Merge PR #6253: Fixing inconsistent associativity of level 10 in the table of levels
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/success/Notations.v | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/success/Notations.v b/test-suite/success/Notations.v index e3f90f6d94..3c0ad20700 100644 --- a/test-suite/success/Notations.v +++ b/test-suite/success/Notations.v @@ -147,3 +147,9 @@ Inductive EQ {A} (x:A) : A -> Prop := REFL : x === x Fail Check {x@{u},y|x=x}. Fail Check {?[n],y|0=0}. + +(* Check that 10 is well declared left associative *) + +Section C. +Notation "f $$$ x" := (id f x) (at level 10, left associativity). +End C. |
