]> git.proxmox.com Git - rustc.git/blame - src/test/ui/imports/issue-55884-1.stderr
New upstream version 1.35.0+dfsg1
[rustc.git] / src / test / ui / imports / issue-55884-1.stderr
CommitLineData
13cf67c4
XL
1error[E0659]: `S` is ambiguous (glob import vs glob import in the same module)
2 --> $DIR/issue-55884-1.rs:19:12
3 |
532ac7d7 4LL | use m::S;
13cf67c4
XL
5 | ^ ambiguous name
6 |
7note: `S` could refer to the struct imported here
8 --> $DIR/issue-55884-1.rs:14:13
9 |
10LL | pub use self::m1::*;
11 | ^^^^^^^^^^^
12 = help: consider adding an explicit import of `S` to disambiguate
13note: `S` could also refer to the struct imported here
14 --> $DIR/issue-55884-1.rs:15:13
15 |
16LL | pub use self::m2::*;
17 | ^^^^^^^^^^^
18 = help: consider adding an explicit import of `S` to disambiguate
19
20error: aborting due to previous error
21
22For more information about this error, try `rustc --explain E0659`.