Skip to content

Commit ed8585f

Browse files
committed
forgot to add the changed stderr
1 parent 652b1bd commit ed8585f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/test/ui/imports/reexports.stderr

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
error[E0364]: `foo` is private, and cannot be re-exported
2-
--> $DIR/reexports.rs:10:17
2+
--> $DIR/reexports.rs:8:17
33
|
44
LL | pub use super::foo;
55
| ^^^^^^^^^^
66
|
77
note: consider marking `foo` as `pub` in the imported module
8-
--> $DIR/reexports.rs:10:17
8+
--> $DIR/reexports.rs:8:17
99
|
1010
LL | pub use super::foo;
1111
| ^^^^^^^^^^
1212

1313
error[E0603]: module `foo` is private
14-
--> $DIR/reexports.rs:35:15
14+
--> $DIR/reexports.rs:33:15
1515
|
1616
LL | use b::a::foo::S;
1717
| ^^^
1818

1919
error[E0603]: module `foo` is private
20-
--> $DIR/reexports.rs:36:15
20+
--> $DIR/reexports.rs:34:15
2121
|
2222
LL | use b::b::foo::S as T;
2323
| ^^^
2424

25-
warning: this glob doesn't reexport anything because no canditate is public enough
26-
--> $DIR/reexports.rs:11:17
25+
warning: glob import doesn't reexport anything because no candidate is public enough
26+
--> $DIR/reexports.rs:9:17
2727
|
2828
LL | pub use super::*;
2929
| ^^^^^^^^

0 commit comments

Comments
 (0)