2022-11-21 19:34:47 +00:00
|
|
|
error: non-binding `let` on a future
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/let_underscore_future.rs:14: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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/let_underscore_future.rs:16: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
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/let_underscore_future.rs:21: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-10-02 18:14:43 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2022-11-21 19:34:47 +00:00
|
|
|
|