2019-03-07 14:18:03 -06:00
|
|
|
error: missing trait in a trait impl
|
|
|
|
--> $DIR/issue-56031.rs:3:5
|
2019-03-04 19:00:28 -06:00
|
|
|
|
|
|
|
|
LL | impl for T {}
|
2019-03-07 14:18:03 -06:00
|
|
|
| ^
|
2021-09-12 15:05:52 -05:00
|
|
|
|
|
|
|
|
help: add a trait here
|
|
|
|
|
|
|
|
|
LL | impl Trait for T {}
|
|
|
|
| +++++
|
|
|
|
help: for an inherent impl, drop this `for`
|
|
|
|
|
|
|
|
|
LL - impl for T {}
|
|
|
|
LL + impl T {}
|
2022-06-08 12:34:57 -05:00
|
|
|
|
|
2019-03-04 19:00:28 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2019-03-04 19:00:28 -06:00
|
|
|
|