Update existing fill struct fields test

This commit is contained in:
nathan.whitaker 2021-08-29 13:14:15 -04:00
parent 251f9dfc8a
commit e4757f9407

View File

@ -242,7 +242,7 @@ enum Expr {
impl Expr {
fn new_bin(lhs: Box<Expr>, rhs: Box<Expr>) -> Expr {
Expr::Bin { lhs: (), rhs: () }
Expr::Bin { lhs, rhs }
}
}
"#,