Skip to content

Commit e7fa536

Browse files
committed
fix tests (run cargo uibless after fmt)
1 parent 708ea87 commit e7fa536

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/ui/neg_multiply.fixed

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,12 @@ fn float() {
8484
}
8585

8686
struct Y {
87-
delta: f64
87+
delta: f64,
8888
}
8989

9090
fn nested() {
91-
let a = Y {delta: 1.0};
92-
let b = Y {delta: 1.0};
91+
let a = Y { delta: 1.0 };
92+
let b = Y { delta: 1.0 };
9393
let _ = (-(a.delta - 0.5).abs()).total_cmp(&1.0);
9494
//~^ neg_multiply
9595
let _ = (-(a.delta - 0.5).abs()).total_cmp(&1.0);

0 commit comments

Comments
 (0)