]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-static-type.stderr
Auto merge of #87150 - rusticstuff:simplify_wrapping_neg, r=m-ou-se
[rust.git] / src / test / ui / wf / wf-static-type.stderr
1 error[E0277]: the trait bound `NotCopy: Copy` is not satisfied
2   --> $DIR/wf-static-type.rs:10:13
3    |
4 LL | struct IsCopy<T:Copy> { t: T }
5    |                 ---- required by this bound in `IsCopy`
6 ...
7 LL | static FOO: IsCopy<Option<NotCopy>> = IsCopy { t: None };
8    |             ^^^^^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `NotCopy`
9    |
10    = note: required because of the requirements on the impl of `Copy` for `Option<NotCopy>`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0277`.