diff options
Diffstat (limited to 'tests/ui/traits/new-solver/auto-with-drop_tracking_mir.fail.stderr')
-rw-r--r-- | tests/ui/traits/new-solver/auto-with-drop_tracking_mir.fail.stderr | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/ui/traits/new-solver/auto-with-drop_tracking_mir.fail.stderr b/tests/ui/traits/new-solver/auto-with-drop_tracking_mir.fail.stderr deleted file mode 100644 index 4aefdd6bb..000000000 --- a/tests/ui/traits/new-solver/auto-with-drop_tracking_mir.fail.stderr +++ /dev/null @@ -1,18 +0,0 @@ -error[E0277]: `impl Future<Output = ()>` cannot be sent between threads safely - --> $DIR/auto-with-drop_tracking_mir.rs:25: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:24: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`. |