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