2022-11-21 19:34:47 +00:00
|
|
|
error: non-binding `let` on a future
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/let_underscore_future.rs:16:5
|
2022-11-21 19:34:47 +00:00
|
|
|
|
|
|
|
|
LL | let _ = some_async_fn();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider awaiting the future or dropping explicitly with `std::mem::drop`
|
|
|
|
= note: `-D clippy::let-underscore-future` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::let_underscore_future)]`
|
2022-11-21 19:34:47 +00:00
|
|
|
|
|
|
|
error: non-binding `let` on a future
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/let_underscore_future.rs:18:5
|
2022-11-21 19:34:47 +00:00
|
|
|
|
|
|
|
|
LL | let _ = custom();
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider awaiting the future or dropping explicitly with `std::mem::drop`
|
|
|
|
|
|
|
|
error: non-binding `let` on a future
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/let_underscore_future.rs:23:5
|
2022-11-21 19:34:47 +00:00
|
|
|
|
|
|
|
|
LL | let _ = future;
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider awaiting the future or dropping explicitly with `std::mem::drop`
|
|
|
|
|
2023-07-31 21:53:53 +00:00
|
|
|
error: this argument is a mutable reference, but not used mutably
|
|
|
|
--> $DIR/let_underscore_future.rs:11:35
|
|
|
|
|
|
|
|
|
LL | fn do_something_to_future(future: &mut impl Future<Output = ()>) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing to: `&impl Future<Output = ()>`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::needless-pass-by-ref-mut` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::needless_pass_by_ref_mut)]`
|
2023-07-31 21:53:53 +00:00
|
|
|
|
2023-07-17 08:19:29 +00:00
|
|
|
error: aborting due to 4 previous errors
|
2022-11-21 19:34:47 +00:00
|
|
|
|