forked from rust-lang/rust
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#68383 - GuillaumeGomez:clean-up-e0205, r=Dy…
…lan-DPC Clean up E0205 explanation r? @Dylan-DPC
- Loading branch information
Showing
1 changed file
with
11 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,18 @@ | ||
You can only implement `Copy` for a struct or enum. Both of the following | ||
examples will fail, because neither `[u8; 256]` nor `&'static mut Bar` | ||
(mutable reference to `Bar`) is a struct or enum: | ||
The `Copy` trait was implemented on a type which is neither a struct nor an | ||
enum. | ||
|
||
Erroneous code example: | ||
|
||
```compile_fail,E0206 | ||
type Foo = [u8; 256]; | ||
impl Copy for Foo { } // error | ||
impl Copy for Foo { } // error! | ||
#[derive(Copy, Clone)] | ||
struct Bar; | ||
impl Copy for &'static mut Bar { } // error | ||
impl Copy for &'static mut Bar { } // error! | ||
``` | ||
|
||
You can only implement `Copy` for a struct or an enum. Both of the previous | ||
examples will fail, because neither `[u8; 256]` nor `&'static mut Bar` | ||
(mutable reference to `Bar`) is a struct or enum. |