2019-09-01 17:30:19 -04:00
|
|
|
warning: unnecessary parentheses around assigned value
|
|
|
|
--> $DIR/issue-54752-async-block.rs:6:22
|
|
|
|
|
|
2021-12-05 10:53:21 -08:00
|
|
|
LL | fn main() { let _a = (async { }); }
|
|
|
|
| ^ ^
|
2019-09-01 17:30:19 -04:00
|
|
|
|
|
|
|
|
= note: `#[warn(unused_parens)]` on by default
|
2021-09-09 14:22:24 +00:00
|
|
|
help: remove these parentheses
|
|
|
|
|
|
2021-12-05 10:53:21 -08:00
|
|
|
LL - fn main() { let _a = (async { }); }
|
|
|
|
LL + fn main() { let _a = async { }; }
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2019-09-01 17:30:19 -04:00
|
|
|
|
2020-03-11 16:30:09 +01:00
|
|
|
warning: 1 warning emitted
|
|
|
|
|