mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-03 17:35:28 +03:00
Really fix early lints inside an async desugaring
This commit is contained in:
@@ -219,10 +219,10 @@ fn visit_expr_post(&mut self, e: &'a ast::Expr) {
|
||||
|
||||
// Explicitly check for lints associated with 'closure_id', since
|
||||
// it does not have a corresponding AST node
|
||||
if let ast::ExprKind::Closure(_, asyncness, ..) = e.kind {
|
||||
if let ast::Async::Yes { closure_id, .. } = asyncness {
|
||||
self.check_id(closure_id);
|
||||
}
|
||||
match e.kind {
|
||||
ast::ExprKind::Closure(_, ast::Async::Yes { closure_id, .. }, ..)
|
||||
| ast::ExprKind::Async(_, closure_id, ..) => self.check_id(closure_id),
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+5
@@ -33,4 +33,9 @@ fn main() {
|
||||
fn inner() {
|
||||
let _ = foo!(third);
|
||||
}
|
||||
|
||||
#[allow(semicolon_in_expressions_from_macros)]
|
||||
async {
|
||||
let _ = foo!(fourth);
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user