aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2017-11-29 12:56:44 +0100
committerGravatar Maxime Dénès <mail@maximedenes.fr>2017-11-29 12:56:44 +0100
commit28dabf726be49bd47538642d1bae83990def4236 (patch)
treede3c41e16b7864b8875ad77796911fb63e87b11d /test-suite
parent5109763ca7d2a1469b392b271da7c1ed711d4258 (diff)
parent7d0eb42050cb4f75c95cefb11c0cac5efa32f40a (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.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/success/Notations.v b/test-suite/success/Notations.v
index e3f90f6d9..3c0ad2070 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.