2016-11-30 16:35:25 -06:00
|
|
|
error[E0404]: expected trait, found type parameter `Add`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-35987.rs:5:21
|
2016-10-26 22:51:49 -05:00
|
|
|
|
|
2022-10-25 17:50:11 -05:00
|
|
|
LL | use std::ops::Add;
|
|
|
|
| --- you might have meant to refer to this trait
|
|
|
|
LL |
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | impl<T: Clone, Add> Add for Foo<T> {
|
2022-08-16 14:53:06 -05:00
|
|
|
| --- ^^^ not a trait
|
|
|
|
| |
|
2022-09-21 18:32:37 -05:00
|
|
|
| found this type parameter
|
2016-10-26 22:51:49 -05:00
|
|
|
|
2024-02-23 05:45:44 -06:00
|
|
|
error[E0223]: ambiguous associated type
|
|
|
|
--> $DIR/issue-35987.rs:9:32
|
|
|
|
|
|
|
|
|
LL | fn add(self, rhs: Self) -> Self::Output {
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: use fully-qualified syntax
|
|
|
|
|
|
|
|
|
LL | fn add(self, rhs: Self) -> <Foo<T> as BitOr>::Output {
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
LL | fn add(self, rhs: Self) -> <Foo<T> as IntoFuture>::Output {
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2016-10-26 22:51:49 -05:00
|
|
|
|
2024-02-23 05:45:44 -06:00
|
|
|
Some errors have detailed explanations: E0223, E0404.
|
|
|
|
For more information about an error, try `rustc --explain E0223`.
|