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
Manishearth committed May 12, 2015
2 parents e216057 + 93c21c7 commit 78cf0f8
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 78cf0f8

Please sign in to comment.