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