mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
17 lines
639 B
Text
17 lines
639 B
Text
warning: future cannot be sent between threads safely
|
|
--> tests/ui/crashes/ice-10645.rs:5:1
|
|
|
|
|
LL | pub async fn bar<'a, T: 'a>(_: T) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ future returned by `bar` is not `Send`
|
|
|
|
|
note: captured value is not `Send`
|
|
--> tests/ui/crashes/ice-10645.rs:5:29
|
|
|
|
|
LL | pub async fn bar<'a, T: 'a>(_: T) {}
|
|
| ^ has type `T` which is not `Send`
|
|
= note: `T` doesn't implement `std::marker::Send`
|
|
= note: `-D clippy::future-not-send` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::future_not_send)]`
|
|
|
|
warning: 1 warning emitted
|
|
|