]> git.lizzy.rs Git - rust.git/blob - tests/ui/impl-trait/nested-return-type3-tait3.stderr
Auto merge of #106742 - compiler-errors:new-solver-make-it-not-ice, r=lcnr
[rust.git] / tests / ui / impl-trait / nested-return-type3-tait3.stderr
1 warning: opaque type `Traitable` does not satisfy its associated type bounds
2   --> $DIR/nested-return-type3-tait3.rs:17:29
3    |
4 LL |     type Assoc: Duh;
5    |                 --- this associated type bound is unsatisfied for `impl Send`
6 ...
7 LL | type Traitable = impl Trait<Assoc = impl Send>;
8    |                             ^^^^^^^^^^^^^^^^^
9    |
10    = note: `#[warn(opaque_hidden_inferred_bound)]` on by default
11 help: add this bound
12    |
13 LL | type Traitable = impl Trait<Assoc = impl Send + Duh>;
14    |                                               +++++
15
16 warning: 1 warning emitted
17