]> git.proxmox.com Git - rustc.git/blame - src/test/ui/wf/wf-const-type.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / wf / wf-const-type.stderr
CommitLineData
1b1a35ee 1error[E0277]: the trait bound `NotCopy: Copy` is not satisfied
0731742a 2 --> $DIR/wf-const-type.rs:10:12
b7449926
XL
3 |
4LL | const FOO: IsCopy<Option<NotCopy>> = IsCopy { t: None };
1b1a35ee 5 | ^^^^^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `NotCopy`
b7449926 6 |
f2b60f7d 7 = note: required for `Option<NotCopy>` to implement `Copy`
94222f64
XL
8note: required by a bound in `IsCopy`
9 --> $DIR/wf-const-type.rs:7:17
10 |
11LL | struct IsCopy<T:Copy> { t: T }
12 | ^^^^ required by this bound in `IsCopy`
04454e1e
FG
13help: consider annotating `NotCopy` with `#[derive(Copy)]`
14 |
15LL | #[derive(Copy)]
16 |
b7449926
XL
17
18error: aborting due to previous error
19
20For more information about this error, try `rustc --explain E0277`.