summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/next-solver/dont-type_of-tait-in-defining-scope.not_send.stderr
blob: 076dab29d890b205294809bcc152ccb64e153785 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0283]: type annotations needed: cannot satisfy `Foo: Send`
  --> $DIR/dont-type_of-tait-in-defining-scope.rs:16:18
   |
LL |     needs_send::<Foo>();
   |                  ^^^
   |
   = note: cannot satisfy `Foo: Send`
note: required by a bound in `needs_send`
  --> $DIR/dont-type_of-tait-in-defining-scope.rs:13:18
   |
LL | fn needs_send<T: Send>() {}
   |                  ^^^^ required by this bound in `needs_send`

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0283`.