about summary refs log tree commit diff
diff options
context:
space:
mode:
authorQuentin Boyer <quentin@familleboyer.net>2019-10-29 00:20:28 +0100
committerQuentin Boyer <quentin@familleboyer.net>2019-10-29 00:20:28 +0100
commited8585ffb5a6d82cb12eff263cd0466ef3f79e36 (patch)
tree0cb3ab88a597d3deb81390c643ea7c9205fcb763
parent652b1bd45dfd81435b431cfe84c0f18f79c3ee7a (diff)
downloadrust-ed8585ffb5a6d82cb12eff263cd0466ef3f79e36.tar.gz
rust-ed8585ffb5a6d82cb12eff263cd0466ef3f79e36.zip
forgot to add the changed stderr
-rw-r--r--src/test/ui/imports/reexports.stderr12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/test/ui/imports/reexports.stderr b/src/test/ui/imports/reexports.stderr
index 382b181f45b..4388e2c276b 100644
--- a/src/test/ui/imports/reexports.stderr
+++ b/src/test/ui/imports/reexports.stderr
@@ -1,29 +1,29 @@
 error[E0364]: `foo` is private, and cannot be re-exported
-  --> $DIR/reexports.rs:10:17
+  --> $DIR/reexports.rs:8:17
    |
 LL |         pub use super::foo;
    |                 ^^^^^^^^^^
    |
 note: consider marking `foo` as `pub` in the imported module
-  --> $DIR/reexports.rs:10:17
+  --> $DIR/reexports.rs:8:17
    |
 LL |         pub use super::foo;
    |                 ^^^^^^^^^^
 
 error[E0603]: module `foo` is private
-  --> $DIR/reexports.rs:35:15
+  --> $DIR/reexports.rs:33:15
    |
 LL |     use b::a::foo::S;
    |               ^^^
 
 error[E0603]: module `foo` is private
-  --> $DIR/reexports.rs:36:15
+  --> $DIR/reexports.rs:34:15
    |
 LL |     use b::b::foo::S as T;
    |               ^^^
 
-warning: this glob doesn't reexport anything because no canditate is public enough
-  --> $DIR/reexports.rs:11:17
+warning: glob import doesn't reexport anything because no candidate is public enough
+  --> $DIR/reexports.rs:9:17
    |
 LL |         pub use super::*;
    |                 ^^^^^^^^