]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type-alias-impl-trait/generic_underconstrained.stderr
Auto merge of #95454 - randomicon00:fix95444, r=wesleywiser
[rust.git] / src / test / ui / type-alias-impl-trait / generic_underconstrained.stderr
1 error[E0277]: the trait bound `T: Trait` is not satisfied
2   --> $DIR/generic_underconstrained.rs:9:31
3    |
4 LL | fn underconstrain<T>(_: T) -> Underconstrained<T> {
5    |                               ^^^^^^^^^^^^^^^^^^^ the trait `Trait` is not implemented for `T`
6    |
7 note: required by a bound in `Underconstrained`
8   --> $DIR/generic_underconstrained.rs:6:26
9    |
10 LL | type Underconstrained<T: Trait> = impl Send;
11    |                          ^^^^^ required by this bound in `Underconstrained`
12 help: consider restricting type parameter `T`
13    |
14 LL | fn underconstrain<T: Trait>(_: T) -> Underconstrained<T> {
15    |                    +++++++
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0277`.