addr-of operator

This commit is contained in:
2025-12-21 16:11:15 +01:00
parent a259d204be
commit d55ca11658
5 changed files with 43 additions and 1 deletions

View File

@@ -160,6 +160,9 @@ impl Analyzer {
self.analyze_expr(expr)?;
self.analyze_expr(index)?;
}
Expr::AddrOf { op: _, expr } => {
self.analyze_expr(expr)?;
}
}
Ok(())
}