2020-01-12 07:20:57 -06:00
|
|
|
error[E0603]: module import `bar` is private
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/shadowed-use-visibility.rs:9:14
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | use foo::bar::f as g;
|
2020-03-22 17:36:54 -05:00
|
|
|
| ^^^ private module import
|
2020-01-12 07:04:03 -06:00
|
|
|
|
|
2020-03-07 12:18:29 -06:00
|
|
|
note: the module import `bar` is defined here...
|
2020-01-12 07:04:03 -06:00
|
|
|
--> $DIR/shadowed-use-visibility.rs:4:9
|
|
|
|
|
|
|
|
|
LL | use foo as bar;
|
|
|
|
| ^^^^^^^^^^
|
2020-03-07 12:18:29 -06:00
|
|
|
note: ...and refers to the module `foo` which is defined here
|
|
|
|
--> $DIR/shadowed-use-visibility.rs:1:1
|
|
|
|
|
|
|
|
|
LL | mod foo {
|
|
|
|
| ^^^^^^^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2020-01-12 07:20:57 -06:00
|
|
|
error[E0603]: module import `f` is private
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/shadowed-use-visibility.rs:15:10
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | use bar::f::f;
|
2020-03-22 17:36:54 -05:00
|
|
|
| ^ private module import
|
2020-01-12 07:04:03 -06:00
|
|
|
|
|
2020-03-07 12:18:29 -06:00
|
|
|
note: the module import `f` is defined here...
|
2020-01-12 07:04:03 -06:00
|
|
|
--> $DIR/shadowed-use-visibility.rs:11:9
|
|
|
|
|
|
|
|
|
LL | use foo as f;
|
|
|
|
| ^^^^^^^^
|
2020-03-07 12:18:29 -06:00
|
|
|
note: ...and refers to the module `foo` which is defined here
|
|
|
|
--> $DIR/shadowed-use-visibility.rs:1:1
|
|
|
|
|
|
|
|
|
LL | mod foo {
|
|
|
|
| ^^^^^^^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0603`.
|