]> git.lizzy.rs Git - rust.git/blob - tests/ui/wf/wf-enum-fields-struct-variant.stderr
Don't resolve type var roots in point_at_expr_source_of_inferred_type
[rust.git] / tests / ui / wf / wf-enum-fields-struct-variant.stderr
1 error[E0277]: the trait bound `A: Copy` is not satisfied
2   --> $DIR/wf-enum-fields-struct-variant.rs:13:12
3    |
4 LL |         f: IsCopy<A>
5    |            ^^^^^^^^^ the trait `Copy` is not implemented for `A`
6    |
7 note: required by a bound in `IsCopy`
8   --> $DIR/wf-enum-fields-struct-variant.rs:7:17
9    |
10 LL | struct IsCopy<T:Copy> {
11    |                 ^^^^ required by this bound in `IsCopy`
12 help: consider restricting type parameter `A`
13    |
14 LL | enum AnotherEnum<A: std::marker::Copy> {
15    |                   +++++++++++++++++++
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0277`.