rust/tests/ui/span/issue-35987.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
531 B
Plaintext
Raw Normal View History

error[E0404]: expected trait, found type parameter `Add`
2018-12-25 15:56:47 +00:00
--> $DIR/issue-35987.rs:5:21
|
2022-10-25 22:50:11 +00:00
LL | use std::ops::Add;
| --- you might have meant to refer to this trait
LL |
2018-02-23 00:42:32 +00:00
LL | impl<T: Clone, Add> Add for Foo<T> {
| --- ^^^ not a trait
| |
2022-09-21 23:32:37 +00:00
| found this type parameter
|
help: consider importing this trait instead
2017-06-28 06:16:04 +00:00
|
2018-02-24 23:01:39 +00:00
LL | use std::ops::Add;
|
2018-03-15 15:13:47 +00:00
error: aborting due to previous error
2018-03-15 15:13:47 +00:00
For more information about this error, try `rustc --explain E0404`.