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