Skip to content

Commit e4757f9

Browse files
committed
Update existing fill struct fields test
1 parent 251f9df commit e4757f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/ide_diagnostics/src/handlers/missing_fields.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ enum Expr {
242242
243243
impl Expr {
244244
fn new_bin(lhs: Box<Expr>, rhs: Box<Expr>) -> Expr {
245-
Expr::Bin { lhs: (), rhs: () }
245+
Expr::Bin { lhs, rhs }
246246
}
247247
}
248248
"#,

0 commit comments

Comments
 (0)