File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
error[E0364]: `foo` is private, and cannot be re-exported
2
- --> $DIR/reexports.rs:10 :17
2
+ --> $DIR/reexports.rs:8 :17
3
3
|
4
4
LL | pub use super::foo;
5
5
| ^^^^^^^^^^
6
6
|
7
7
note: consider marking `foo` as `pub` in the imported module
8
- --> $DIR/reexports.rs:10 :17
8
+ --> $DIR/reexports.rs:8 :17
9
9
|
10
10
LL | pub use super::foo;
11
11
| ^^^^^^^^^^
12
12
13
13
error[E0603]: module `foo` is private
14
- --> $DIR/reexports.rs:35 :15
14
+ --> $DIR/reexports.rs:33 :15
15
15
|
16
16
LL | use b::a::foo::S;
17
17
| ^^^
18
18
19
19
error[E0603]: module `foo` is private
20
- --> $DIR/reexports.rs:36 :15
20
+ --> $DIR/reexports.rs:34 :15
21
21
|
22
22
LL | use b::b::foo::S as T;
23
23
| ^^^
24
24
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
27
27
|
28
28
LL | pub use super::*;
29
29
| ^^^^^^^^
You can’t perform that action at this time.
0 commit comments