Skip to content

Commit 398f946

Browse files
committed
bless
1 parent 93dab8f commit 398f946

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/ui/let_underscore_future.stderr

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error: non-binding let on a future
1+
error: non-binding `let` on a future
22
--> $DIR/let_underscore_future.rs:14:5
33
|
44
LL | let _ = some_async_fn();
@@ -7,15 +7,15 @@ LL | let _ = some_async_fn();
77
= help: consider awaiting the future or dropping explicitly with `std::mem::drop`
88
= note: `-D clippy::let-underscore-future` implied by `-D warnings`
99

10-
error: non-binding let on a future
10+
error: non-binding `let` on a future
1111
--> $DIR/let_underscore_future.rs:15:5
1212
|
1313
LL | let _ = custom();
1414
| ^^^^^^^^^^^^^^^^^
1515
|
1616
= help: consider awaiting the future or dropping explicitly with `std::mem::drop`
1717

18-
error: non-binding let on a future
18+
error: non-binding `let` on a future
1919
--> $DIR/let_underscore_future.rs:19:5
2020
|
2121
LL | let _ = future;

0 commit comments

Comments
 (0)