mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
beaf31581a
When encoutering a privacy error on an item through a re-export that is accessible in an alternative path, provide a structured suggestion with that path. ``` error[E0603]: module import `mem` is private --> $DIR/private-std-reexport-suggest-public.rs:4:14 | LL | use foo::mem; | ^^^ private module import | note: the module import `mem` is defined here... --> $DIR/private-std-reexport-suggest-public.rs:8:9 | LL | use std::mem; | ^^^^^^^^ note: ...and refers to the module `mem` which is defined here --> $SRC_DIR/std/src/lib.rs:LL:COL | = note: you could import this help: import `mem` through the re-export | LL | use std::mem; | ~~~~~~~~ ``` Fix #42909.
35 lines
1.2 KiB
Plaintext
35 lines
1.2 KiB
Plaintext
error[E0603]: struct import `ParseOptions` is private
|
|
--> $DIR/issue-55884-2.rs:13:17
|
|
|
|
|
LL | pub use parser::ParseOptions;
|
|
| ^^^^^^^^^^^^ private struct import
|
|
|
|
|
note: the struct import `ParseOptions` is defined here...
|
|
--> $DIR/issue-55884-2.rs:10:9
|
|
|
|
|
LL | use ParseOptions;
|
|
| ^^^^^^^^^^^^
|
|
note: ...and refers to the struct import `ParseOptions` which is defined here...
|
|
--> $DIR/issue-55884-2.rs:13:9
|
|
|
|
|
LL | pub use parser::ParseOptions;
|
|
| ^^^^^^^^^^^^^^^^^^^^ you could import this re-export
|
|
note: ...and refers to the struct import `ParseOptions` which is defined here...
|
|
--> $DIR/issue-55884-2.rs:6:13
|
|
|
|
|
LL | pub use options::*;
|
|
| ^^^^^^^^^^ you could import this re-export
|
|
note: ...and refers to the struct `ParseOptions` which is defined here
|
|
--> $DIR/issue-55884-2.rs:2:5
|
|
|
|
|
LL | pub struct ParseOptions {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ you could import this directly
|
|
help: import `ParseOptions` through the re-export
|
|
|
|
|
LL | pub use parser::ParseOptions;
|
|
| ~~~~~~~~~~~~~~~~~~~~
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0603`.
|