This commit is contained in:
Steven Casper 2022-11-04 21:09:26 -07:00
parent 93dab8fea2
commit 398f9468df

View File

@ -1,4 +1,4 @@
error: non-binding let on a future error: non-binding `let` on a future
--> $DIR/let_underscore_future.rs:14:5 --> $DIR/let_underscore_future.rs:14:5
| |
LL | let _ = some_async_fn(); LL | let _ = some_async_fn();
@ -7,7 +7,7 @@ LL | let _ = some_async_fn();
= help: consider awaiting the future or dropping explicitly with `std::mem::drop` = help: consider awaiting the future or dropping explicitly with `std::mem::drop`
= note: `-D clippy::let-underscore-future` implied by `-D warnings` = note: `-D clippy::let-underscore-future` implied by `-D warnings`
error: non-binding let on a future error: non-binding `let` on a future
--> $DIR/let_underscore_future.rs:15:5 --> $DIR/let_underscore_future.rs:15:5
| |
LL | let _ = custom(); LL | let _ = custom();
@ -15,7 +15,7 @@ LL | let _ = custom();
| |
= help: consider awaiting the future or dropping explicitly with `std::mem::drop` = help: consider awaiting the future or dropping explicitly with `std::mem::drop`
error: non-binding let on a future error: non-binding `let` on a future
--> $DIR/let_underscore_future.rs:19:5 --> $DIR/let_underscore_future.rs:19:5
| |
LL | let _ = future; LL | let _ = future;