aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/output/Notations.v
diff options
context:
space:
mode:
authorGravatar Paul Steckler <steck@stecksoft.com>2017-06-09 12:30:42 -0400
committerGravatar Paul Steckler <steck@stecksoft.com>2017-06-09 12:30:42 -0400
commit849bf3600fe11fea876c9aeea69fe806b0c8c5d8 (patch)
tree6af03f32f864882392abe7dded939bed439a368f /test-suite/output/Notations.v
parent03fee03c9bc31225d8f0c3a1cef206145490d341 (diff)
Fix Bug #5568, no dup notation warnings on repeated module imports
Diffstat (limited to 'test-suite/output/Notations.v')
-rw-r--r--test-suite/output/Notations.v11
1 files changed, 11 insertions, 0 deletions
diff --git a/test-suite/output/Notations.v b/test-suite/output/Notations.v
index 2ccca829d..b9985a594 100644
--- a/test-suite/output/Notations.v
+++ b/test-suite/output/Notations.v
@@ -1,3 +1,14 @@
+(* Bug 5568, don't warn for notations in repeated module import *)
+
+Module foo.
+Notation compose := (fun g f => g f).
+Notation "g & f" := (compose g f) (at level 10).
+End foo.
+
+Import foo.
+Import foo.
+Import foo.
+
(**********************************************************************)
(* Notations for if and let (submitted by Roland Zumkeller) *)