]> git.proxmox.com Git - rustc.git/blame - tests/ui/error-codes/E0659.stderr
New upstream version 1.76.0+dfsg1
[rustc.git] / tests / ui / error-codes / E0659.stderr
CommitLineData
3c0e092e 1error[E0659]: `foo` is ambiguous
0731742a 2 --> $DIR/E0659.rs:15:15
2c00a5a8 3 |
532ac7d7 4LL | collider::foo();
b7449926 5 | ^^^ ambiguous name
2c00a5a8 6 |
3c0e092e 7 = note: ambiguous because of multiple glob imports of a name in the same module
13cf67c4 8note: `foo` could refer to the function imported here
0731742a 9 --> $DIR/E0659.rs:10:13
2c00a5a8 10 |
0531ce1d 11LL | pub use moon::*;
2c00a5a8 12 | ^^^^^^^
13cf67c4
XL
13 = help: consider adding an explicit import of `foo` to disambiguate
14note: `foo` could also refer to the function imported here
0731742a 15 --> $DIR/E0659.rs:11:13
2c00a5a8 16 |
0531ce1d 17LL | pub use earth::*;
2c00a5a8 18 | ^^^^^^^^
13cf67c4 19 = help: consider adding an explicit import of `foo` to disambiguate
2c00a5a8 20
4b012472 21error: aborting due to 1 previous error
2c00a5a8 22
0531ce1d 23For more information about this error, try `rustc --explain E0659`.