aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2017-06-15 22:19:48 +0200
committerGravatar Maxime Dénès <mail@maximedenes.fr>2017-06-15 22:19:48 +0200
commit321876cea9406994f53fe9a35c0afd333fe6c074 (patch)
treecc9b9948e30bfd38b7ca70bce4df9b45bc4e75d6 /test-suite
parentce1e1dba837ad6e2c79ff7e531b5e3adea3cd327 (diff)
parent849bf3600fe11fea876c9aeea69fe806b0c8c5d8 (diff)
Merge PR#747: Fix Bug #5568, no dup notation warnings on repeated module imports
Diffstat (limited to 'test-suite')
-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) *)