Skip to content

Commit 720ca8c

Browse files
author
Charlotte Thomas
committed
fix error
1 parent f253142 commit 720ca8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/parsing/ast.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,8 @@ mod test {
276276
pub fn new(p: Parameters) -> Self {
277277
Ast::Node {
278278
value: p,
279-
left: Box::from(Nil),
280-
right: Box::from(Nil),
279+
left: Box::from(Ast::Nil),
280+
right: Box::from(Ast::Nil),
281281
}
282282
}
283283
}

0 commit comments

Comments
 (0)