]> git.lizzy.rs Git - rust.git/commitdiff
bless
authorSteven Casper <sebastiancasper3@gmail.com>
Sat, 5 Nov 2022 04:09:26 +0000 (21:09 -0700)
committerSteven Casper <sebastiancasper3@gmail.com>
Sat, 5 Nov 2022 04:09:26 +0000 (21:09 -0700)
tests/ui/let_underscore_future.stderr

index f1b9b1d709ec0f5bcec5004e8c3f4de3195852ef..33a748736a880ed5997a781ed4fe4a4b0bac13e3 100644 (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
    |
 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`
    = 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
    |
 LL |     let _ = custom();
@@ -15,7 +15,7 @@ LL |     let _ = custom();
    |
    = 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
    |
 LL |     let _ = future;