]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-3702-2.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-3702-2.stderr
1 error[E0034]: multiple applicable items in scope
2   --> $DIR/issue-3702-2.rs:26:14
3    |
4 LL |         self.to_int() + other.to_int() //~ ERROR multiple applicable items in scope
5    |              ^^^^^^ multiple `to_int` found
6    |
7 note: candidate #1 is defined in an impl of the trait `ToPrimitive` for the type `isize`
8   --> $DIR/issue-3702-2.rs:12:5
9    |
10 LL |     fn to_int(&self) -> isize { 0 }
11    |     ^^^^^^^^^^^^^^^^^^^^^^^^^
12 note: candidate #2 is defined in an impl of the trait `Add` for the type `isize`
13   --> $DIR/issue-3702-2.rs:24:5
14    |
15 LL |     fn to_int(&self) -> isize { *self }
16    |     ^^^^^^^^^^^^^^^^^^^^^^^^^
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0034`.