You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0204]: the trait `Copy` may not be implemented for this type
--> src/main.rs:1:17
|
1 | #[derive(Clone, Copy)]
| ^^^^
2 | struct Foo(NotDefined, <i32 as Iterator>::Item, Vec<i32>, String);
| ----------- this field does not implement `Copy`
The text was updated successfully, but these errors were encountered:
As identified in a recent PR, tuple struct fields have spans including trailing characters (
,
and)
):The text was updated successfully, but these errors were encountered: