2021-05-20 05:30:31 -05:00
|
|
|
error: unused `async` for function with no await statements
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/unused_async.rs:12:5
|
2023-06-02 04:41:57 -05:00
|
|
|
|
|
|
|
|
LL | / async fn async_block_await() {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2023-06-02 04:41:57 -05:00
|
|
|
LL | | async {
|
|
|
|
LL | | ready(()).await;
|
|
|
|
LL | | };
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
= help: consider removing the `async` from this function
|
|
|
|
note: `await` used in an async block, which does not require the enclosing function to be `async`
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/unused_async.rs:15:23
|
2023-06-02 04:41:57 -05:00
|
|
|
|
|
|
|
|
LL | ready(()).await;
|
|
|
|
| ^^^^^
|
|
|
|
= note: `-D clippy::unused-async` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::unused_async)]`
|
2023-06-02 04:41:57 -05:00
|
|
|
|
|
|
|
error: unused `async` for function with no await statements
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/unused_async.rs:45:5
|
2023-07-31 16:53:53 -05:00
|
|
|
|
|
|
|
|
LL | async fn f3() {}
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider removing the `async` from this function
|
|
|
|
|
|
|
|
error: unused `async` for function with no await statements
|
2024-09-27 16:38:38 -05:00
|
|
|
--> tests/ui/unused_async.rs:74:1
|
2021-05-20 05:30:31 -05:00
|
|
|
|
|
|
|
|
LL | / async fn foo() -> i32 {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2021-05-20 05:30:31 -05:00
|
|
|
LL | | 4
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
= help: consider removing the `async` from this function
|
|
|
|
|
2022-06-30 03:50:09 -05:00
|
|
|
error: unused `async` for function with no await statements
|
2024-09-27 16:38:38 -05:00
|
|
|
--> tests/ui/unused_async.rs:86:5
|
2022-06-30 03:50:09 -05:00
|
|
|
|
|
|
|
|
LL | / async fn unused(&self) -> i32 {
|
2023-08-24 14:32:12 -05:00
|
|
|
LL | |
|
2022-06-30 03:50:09 -05:00
|
|
|
LL | | 1
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
= help: consider removing the `async` from this function
|
|
|
|
|
2023-07-31 16:53:53 -05:00
|
|
|
error: aborting due to 4 previous errors
|
2021-05-20 05:30:31 -05:00
|
|
|
|