mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
error[E0603]: struct import `ParseOptions` is private
|
|
--> $DIR/issue-55884-2.rs:12:17
|
|
|
|
|
LL | pub use parser::ParseOptions;
|
|
| ^^^^^^^^^^^^ private struct import
|
|
|
|
|
note: the struct import `ParseOptions` is defined here...
|
|
--> $DIR/issue-55884-2.rs:9:9
|
|
|
|
|
LL | use ParseOptions;
|
|
| ^^^^^^^^^^^^
|
|
note: ...and refers to the struct import `ParseOptions` which is defined here...
|
|
--> $DIR/issue-55884-2.rs:12:9
|
|
|
|
|
LL | pub use parser::ParseOptions;
|
|
| ^^^^^^^^^^^^^^^^^^^^ consider importing it directly
|
|
note: ...and refers to the struct import `ParseOptions` which is defined here...
|
|
--> $DIR/issue-55884-2.rs:6:13
|
|
|
|
|
LL | pub use options::*;
|
|
| ^^^^^^^^^^ consider importing it directly
|
|
note: ...and refers to the struct `ParseOptions` which is defined here
|
|
--> $DIR/issue-55884-2.rs:2:5
|
|
|
|
|
LL | pub struct ParseOptions {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ consider importing it directly
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0603`.
|