summaryrefslogtreecommitdiff
path: root/tests/ui/resolve/issue-3099-b.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/resolve/issue-3099-b.stderr')
-rw-r--r--tests/ui/resolve/issue-3099-b.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/resolve/issue-3099-b.stderr b/tests/ui/resolve/issue-3099-b.stderr
new file mode 100644
index 00000000000..c0cfefeb940
--- /dev/null
+++ b/tests/ui/resolve/issue-3099-b.stderr
@@ -0,0 +1,14 @@
+error[E0428]: the name `a` is defined multiple times
+ --> $DIR/issue-3099-b.rs:3:1
+ |
+LL | pub mod a {}
+ | --------- previous definition of the module `a` here
+LL |
+LL | pub mod a {}
+ | ^^^^^^^^^ `a` redefined here
+ |
+ = note: `a` must be defined only once in the type namespace of this module
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0428`.