Skip to content

Commit

Permalink
Rollup merge of rust-lang#25327 - Ms2ger:copy-ref, r=pnkfelix
Browse files Browse the repository at this point in the history
  • Loading branch information
steveklabnik committed May 12, 2015
2 parents 5096ce6 + 93c21c7 commit 29dd563
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/librustc_typeck/diagnostics.rs
Expand Up @@ -186,7 +186,7 @@ struct Foo<'a> {
```
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`).
differs from the behavior for `&T`, which is always `Copy`).
"##,

E0205: r##"
Expand Down Expand Up @@ -216,7 +216,7 @@ enum Foo<'a> {
```
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`).
differs from the behavior for `&T`, which is always `Copy`).
"##,

E0206: r##"
Expand Down

0 comments on commit 29dd563

Please sign in to comment.