summaryrefslogtreecommitdiffstats
path: root/tests/ui/imports/pub-reexport-empty.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/imports/pub-reexport-empty.stderr')
-rw-r--r--tests/ui/imports/pub-reexport-empty.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/ui/imports/pub-reexport-empty.stderr b/tests/ui/imports/pub-reexport-empty.stderr
new file mode 100644
index 000000000..813b2ef71
--- /dev/null
+++ b/tests/ui/imports/pub-reexport-empty.stderr
@@ -0,0 +1,20 @@
+error: unused import: `a::*`
+ --> $DIR/pub-reexport-empty.rs:5:9
+ |
+LL | pub use a::*;
+ | ^^^^
+ |
+note: the lint level is defined here
+ --> $DIR/pub-reexport-empty.rs:1:9
+ |
+LL | #![deny(unused_imports)]
+ | ^^^^^^^^^^^^^^
+
+error: unused import: `d::*`
+ --> $DIR/pub-reexport-empty.rs:22:9
+ |
+LL | pub use d::*;
+ | ^^^^
+
+error: aborting due to 2 previous errors
+