]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-const/associated-const-ambiguity-report.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / associated-const / associated-const-ambiguity-report.stderr
1 error[E0034]: multiple applicable items in scope
2   --> $DIR/associated-const-ambiguity-report.rs:28:16
3    |
4 LL | const X: i32 = <i32>::ID; //~ ERROR E0034
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:21: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:25:5
14    |
15 LL |     const ID: i32 = 3;
16    |     ^^^^^^^^^^^^^^^^^^
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0034`.