summaryrefslogtreecommitdiffstats
path: root/src/test/ui/test-attrs/inaccessible-test-modules.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/test-attrs/inaccessible-test-modules.stderr27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/test/ui/test-attrs/inaccessible-test-modules.stderr b/src/test/ui/test-attrs/inaccessible-test-modules.stderr
deleted file mode 100644
index 0c16ecd4c..000000000
--- a/src/test/ui/test-attrs/inaccessible-test-modules.stderr
+++ /dev/null
@@ -1,27 +0,0 @@
-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
- |
-LL | use test as y;
- | ~~~~
-help: consider importing this module instead
- |
-LL | use test::test;
- | ~~~~~~~~~~~
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0432`.