summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/new-solver/auto-with-drop_tracking_mir.fail.stderr
blob: 6a926534e079b86622da3b93617306fb6a6fe74e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0277]: `impl Future<Output = ()>` cannot be sent between threads safely
  --> $DIR/auto-with-drop_tracking_mir.rs:24:13
   |
LL |     is_send(foo());
   |     ------- ^^^^^ `impl Future<Output = ()>` cannot be sent between threads safely
   |     |
   |     required by a bound introduced by this call
   |
   = help: the trait `Send` is not implemented for `impl Future<Output = ()>`
note: required by a bound in `is_send`
  --> $DIR/auto-with-drop_tracking_mir.rs:23:24
   |
LL |     fn is_send(_: impl Send) {}
   |                        ^^^^ required by this bound in `is_send`

error: aborting due to previous error

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