This commit is contained in:
nora 2022-06-26 13:06:30 +02:00
parent dc200d2046
commit 37772658bd
6 changed files with 96 additions and 42 deletions

View file

@ -113,7 +113,7 @@ pub enum Decl {
#[derive(Debug, DebugPls)]
pub struct InitDecl {
pub declarator: Declarator,
pub init: Option<Expr>,
pub init: Option<Spanned<Expr>>,
}
#[derive(Debug, DebugPls)]