Really fix early lints inside an async desugaring

This commit is contained in:
Jethro Beekman 2021-02-03 09:40:59 +01:00
parent e6a0f3cdf3
commit 37cb9d30fa
2 changed files with 9 additions and 4 deletions

View file

@ -33,4 +33,9 @@ fn main() {
fn inner() {
let _ = foo!(third);
}
#[allow(semicolon_in_expressions_from_macros)]
async {
let _ = foo!(fourth);
};
}