]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/nested-return-type3-tait3.stderr
Rollup merge of #103159 - cuviper:check_pow-final-try_opt, r=Mark-Simulacrum
[rust.git] / src / test / 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