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 d730750 commit a40c49cCopy full SHA for a40c49c
src/librustc_typeck/diagnostics.rs
@@ -183,8 +183,8 @@ struct Foo<'a> {
183
}
184
```
185
186
-This fails because `&mut T` is not `Copy`, even when `T` is `Copy` (as opposed
187
-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`).
188
"##,
189
190
E0205: r##"
@@ -213,8 +213,8 @@ enum Foo<'a> {
213
214
215
216
217
218
219
220
E0206: r##"
0 commit comments