]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-3702-2.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / issues / issue-3702-2.stderr
1 error[E0034]: multiple applicable items in scope
2 --> $DIR/issue-3702-2.rs:16:14
3 |
4 LL | self.to_int() + other.to_int()
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:2: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:14:5
14 |
15 LL | fn to_int(&self) -> isize { *self }
16 | ^^^^^^^^^^^^^^^^^^^^^^^^^
17 help: disambiguate the associated function for candidate #1
18 |
19 LL | ToPrimitive::to_int(&self) + other.to_int()
20 | ^^^^^^^^^^^^^^^^^^^^^^^^^^
21 help: disambiguate the associated function for candidate #2
22 |
23 LL | Add::to_int(&self) + other.to_int()
24 | ^^^^^^^^^^^^^^^^^^
25
26 error: aborting due to previous error
27
28 For more information about this error, try `rustc --explain E0034`.