summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_error_codes/src/error_codes/E0206.md
blob: 9e85234bdbb3ab7532c32d99cd2d92c52e9400a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
The `Copy` trait was implemented on a type which is neither a struct, an
enum, nor a union.

Erroneous code example:

```compile_fail,E0206
#[derive(Copy, Clone)]
struct Bar;

impl Copy for &'static mut Bar { } // error!
```

You can only implement `Copy` for a struct, an enum, or a union.
The previous example will fail because `&'static mut Bar`
is not a struct, an enum, or a union.