]> git.proxmox.com Git - rustc.git/blame - src/test/ui/associated-const/associated-const-ambiguity-report.stderr
New upstream version 1.48.0+dfsg1
[rustc.git] / src / test / ui / associated-const / associated-const-ambiguity-report.stderr
CommitLineData
b7449926 1error[E0034]: multiple applicable items in scope
ba9703b0 2 --> $DIR/associated-const-ambiguity-report.rs:17:23
b7449926 3 |
532ac7d7 4LL | const X: i32 = <i32>::ID;
ba9703b0 5 | ^^ multiple `ID` found
b7449926
XL
6 |
7note: candidate #1 is defined in an impl of the trait `Foo` for the type `i32`
0731742a 8 --> $DIR/associated-const-ambiguity-report.rs:10:5
b7449926
XL
9 |
10LL | const ID: i32 = 1;
11 | ^^^^^^^^^^^^^^^^^^
12note: candidate #2 is defined in an impl of the trait `Bar` for the type `i32`
0731742a 13 --> $DIR/associated-const-ambiguity-report.rs:14:5
b7449926
XL
14 |
15LL | const ID: i32 = 3;
16 | ^^^^^^^^^^^^^^^^^^
dfeec247
XL
17help: disambiguate the associated constant for candidate #1
18 |
19LL | const X: i32 = Foo::ID;
20 | ^^^^^^^
21help: disambiguate the associated constant for candidate #2
22 |
23LL | const X: i32 = Bar::ID;
24 | ^^^^^^^
b7449926
XL
25
26error: aborting due to previous error
27
28For more information about this error, try `rustc --explain E0034`.