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