summaryrefslogtreecommitdiffstats
path: root/src/test/ui/imports/issue-55884-2.stderr
blob: 5adbc4b66d1336ba5270b7dbf0fd89faadccd9ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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`.