fix: Walk const block expressions for unsafety checking

This commit is contained in:
Lukas Wirth 2025-04-10 15:56:31 +02:00
parent 4fdc2507c6
commit 8df812f14d
3 changed files with 21 additions and 0 deletions

View file

@ -348,6 +348,7 @@ impl<'a> UnsafeVisitor<'a> {
Expr::Closure { args, .. } => {
self.walk_pats_top(args.iter().copied(), current);
}
Expr::Const(e) => self.walk_expr(*e),
_ => {}
}