2023-07-02 07:35:19 -05:00
|
|
|
warning: future cannot be sent between threads safely
|
2023-10-02 16:31:46 -05:00
|
|
|
--> $DIR/ice-10645.rs:5:1
|
2023-04-18 11:15:06 -05:00
|
|
|
|
|
|
|
|
LL | pub async fn bar<'a, T: 'a>(_: T) {}
|
2023-10-02 16:31:46 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ future returned by `bar` is not `Send`
|
2023-04-18 11:15:06 -05:00
|
|
|
|
|
|
|
|
note: captured value is not `Send`
|
2023-05-05 10:45:49 -05:00
|
|
|
--> $DIR/ice-10645.rs:5:29
|
2023-04-18 11:15:06 -05:00
|
|
|
|
|
|
|
|
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`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::future_not_send)]`
|
2023-04-18 11:15:06 -05:00
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
warning: 1 warning emitted
|
2023-04-18 11:15:06 -05:00
|
|
|
|