rust/tests/ui/impl-trait/method-resolution3.current.stderr

21 lines
580 B
Plaintext
Raw Normal View History

error[E0034]: multiple applicable items in scope
--> $DIR/method-resolution3.rs:21:11
2024-04-15 11:20:33 +00:00
|
LL | x.bar();
| ^^^ multiple `bar` found
2024-04-15 11:20:33 +00:00
|
note: candidate #1 is defined in an impl for the type `Bar<i32>`
--> $DIR/method-resolution3.rs:15:5
2024-04-15 11:20:33 +00:00
|
LL | fn bar(self) {}
| ^^^^^^^^^^^^
note: candidate #2 is defined in an impl for the type `Bar<u32>`
--> $DIR/method-resolution3.rs:11:5
2024-04-15 11:20:33 +00:00
|
LL | fn bar(self) {}
| ^^^^^^^^^^^^
2024-04-15 11:20:33 +00:00
error: aborting due to 1 previous error
2024-04-15 11:20:33 +00:00
For more information about this error, try `rustc --explain E0034`.