summaryrefslogtreecommitdiffstats
path: root/src/test/ui/test-attrs/inaccessible-test-modules.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/test-attrs/inaccessible-test-modules.stderr')
-rw-r--r--src/test/ui/test-attrs/inaccessible-test-modules.stderr21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/ui/test-attrs/inaccessible-test-modules.stderr b/src/test/ui/test-attrs/inaccessible-test-modules.stderr
new file mode 100644
index 000000000..a94ea1e79
--- /dev/null
+++ b/src/test/ui/test-attrs/inaccessible-test-modules.stderr
@@ -0,0 +1,21 @@
+error[E0432]: unresolved import `main`
+ --> $DIR/inaccessible-test-modules.rs:5:5
+ |
+LL | use main as x;
+ | ----^^^^^
+ | |
+ | no `main` in the root
+ | help: a similar name exists in the module: `main`
+
+error[E0432]: unresolved import `test`
+ --> $DIR/inaccessible-test-modules.rs:6:5
+ |
+LL | use test as y;
+ | ----^^^^^
+ | |
+ | no `test` in the root
+ | help: a similar name exists in the module: `test`
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0432`.