diff options
Diffstat (limited to 'tests/ui/imports/issue-55884-2.stderr')
-rw-r--r-- | tests/ui/imports/issue-55884-2.stderr | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/ui/imports/issue-55884-2.stderr b/tests/ui/imports/issue-55884-2.stderr new file mode 100644 index 000000000..5adbc4b66 --- /dev/null +++ b/tests/ui/imports/issue-55884-2.stderr @@ -0,0 +1,30 @@ +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`. |