mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
75 lines
2.8 KiB
Text
75 lines
2.8 KiB
Text
error: this async expression only awaits a single future
|
|
--> tests/ui/redundant_async_block.rs:13:13
|
|
|
|
|
LL | let x = async { f.await };
|
|
| ^^^^^^^^^^^^^^^^^ help: you can reduce it to: `f`
|
|
|
|
|
= note: `-D clippy::redundant-async-block` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::redundant_async_block)]`
|
|
|
|
error: this async expression only awaits a single future
|
|
--> tests/ui/redundant_async_block.rs:20:16
|
|
|
|
|
LL | let fut2 = async { fut1.await };
|
|
| ^^^^^^^^^^^^^^^^^^^^ help: you can reduce it to: `fut1`
|
|
|
|
error: this async expression only awaits a single future
|
|
--> tests/ui/redundant_async_block.rs:24:16
|
|
|
|
|
LL | let fut2 = async move { fut1.await };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can reduce it to: `fut1`
|
|
|
|
error: this async expression only awaits a single future
|
|
--> tests/ui/redundant_async_block.rs:27:15
|
|
|
|
|
LL | let fut = async { async { 42 }.await };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can reduce it to: `async { 42 }`
|
|
|
|
error: this async expression only awaits a single future
|
|
--> tests/ui/redundant_async_block.rs:43:5
|
|
|
|
|
LL | async move { fut.await }
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: you can reduce it to: `fut`
|
|
|
|
error: this async expression only awaits a single future
|
|
--> tests/ui/redundant_async_block.rs:56:5
|
|
|
|
|
LL | async move { fut.await }
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: you can reduce it to: `fut`
|
|
|
|
error: this async expression only awaits a single future
|
|
--> tests/ui/redundant_async_block.rs:61:5
|
|
|
|
|
LL | async { f.await }
|
|
| ^^^^^^^^^^^^^^^^^ help: you can reduce it to: `f`
|
|
|
|
error: this async expression only awaits a single future
|
|
--> tests/ui/redundant_async_block.rs:84:5
|
|
|
|
|
LL | async { async { f().await + 1 }.await }
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can reduce it to: `async { f().await + 1 }`
|
|
|
|
error: this async expression only awaits a single future
|
|
--> tests/ui/redundant_async_block.rs:147:13
|
|
|
|
|
LL | async { async { 42 }.await }
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can reduce it to: `async { 42 }`
|
|
...
|
|
LL | mac!()
|
|
| ------ in this macro invocation
|
|
|
|
|
= note: this error originates in the macro `mac` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: this async expression only awaits a single future
|
|
--> tests/ui/redundant_async_block.rs:167:13
|
|
|
|
|
LL | async { async { $e }.await }
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can reduce it to: `async { $e }`
|
|
...
|
|
LL | mac!(42)
|
|
| -------- in this macro invocation
|
|
|
|
|
= note: this error originates in the macro `mac` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: aborting due to 10 previous errors
|
|
|