We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb9a686 commit 3dbef05Copy full SHA for 3dbef05
src/librustc_typeck/diagnostics.rs
@@ -152,8 +152,8 @@ struct Foo<'a> {
152
}
153
```
154
155
-This fails because `&mut T` is not `Copy`, even when `T` is `Copy` (as opposed
156
-to `&T`, which is).
+This fails because `&mut T` is not `Copy`, even when `T` is `Copy` (this
+differs from the behavior for `&T`, which is `Copy` when `T` is `Copy`).
157
"##,
158
159
E0205: r##"
@@ -182,8 +182,8 @@ enum Foo<'a> {
182
183
184
185
186
187
188
189
E0206: r##"
0 commit comments