aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/closed/4904.v
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-08-23 11:28:29 +0200
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-08-23 11:30:14 +0200
commitf0ba692422a8a608ef44964ecf74d8b483c1beb3 (patch)
tree91e08dc5fca6358728e5aed5a9f0ab7e9a84b673 /test-suite/bugs/closed/4904.v
parentfb9dfa53f2f71ed501be27213600143ee0b7554d (diff)
Fix bug #4904: [Import] does not load intermediately unqualified names of aliases.
Diffstat (limited to 'test-suite/bugs/closed/4904.v')
-rw-r--r--test-suite/bugs/closed/4904.v11
1 files changed, 11 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/4904.v b/test-suite/bugs/closed/4904.v
new file mode 100644
index 000000000..a47c3b07a
--- /dev/null
+++ b/test-suite/bugs/closed/4904.v
@@ -0,0 +1,11 @@
+Module A.
+Module B.
+Notation mynat := nat.
+Notation nat := nat.
+End B.
+End A.
+
+Print A.B.nat. (* Notation A.B.nat := nat *)
+Import A.
+Print B.mynat.
+Print B.nat.