2016-12-01 01:35:25 +03:00
|
|
|
error[E0404]: expected trait, found type parameter `Add`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-35987.rs:5:21
|
2016-10-26 20:51:49 -07: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-23 03:42:32 +03:00
|
|
|
LL | impl<T: Clone, Add> Add for Foo<T> {
|
2022-08-17 04:53:06 +09:00
|
|
|
| --- ^^^ not a trait
|
|
|
|
| |
|
2022-09-22 01:32:37 +02:00
|
|
|
| found this type parameter
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2020-05-04 18:12:06 -04:00
|
|
|
help: consider importing this trait instead
|
2017-06-27 23:16:04 -07:00
|
|
|
|
|
2023-03-18 02:18:39 +00:00
|
|
|
LL + use std::ops::Add;
|
2017-07-05 16:39:06 -07:00
|
|
|
|
|
2016-10-26 20:51:49 -07:00
|
|
|
|
2018-03-15 16:13:47 +01:00
|
|
|
error: aborting due to previous error
|
2016-10-26 20:51:49 -07:00
|
|
|
|
2018-03-15 16:13:47 +01:00
|
|
|
For more information about this error, try `rustc --explain E0404`.
|