summaryrefslogtreecommitdiffstats
path: root/src/test/ui/impl-trait/nested-return-type3-tait.stderr
blob: 5f58c8dca4ad4a7c94289acb866498bc503fc81a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
warning: opaque type `impl Trait<Assoc = Sendable>` does not satisfy its associated type bounds
  --> $DIR/nested-return-type3-tait.rs:19:24
   |
LL |     type Assoc: Duh;
   |                 --- this associated type bound is unsatisfied for `Sendable`
...
LL | fn foo() -> impl Trait<Assoc = Sendable> {
   |                        ^^^^^^^^^^^^^^^^
   |
   = note: `#[warn(opaque_hidden_inferred_bound)]` on by default
help: add this bound
   |
LL | type Sendable = impl Send + Duh;
   |                           +++++

warning: 1 warning emitted