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