We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 708ea87 commit e7fa536Copy full SHA for e7fa536
tests/ui/neg_multiply.fixed
@@ -84,12 +84,12 @@ fn float() {
84
}
85
86
struct Y {
87
- delta: f64
+ delta: f64,
88
89
90
fn nested() {
91
- let a = Y {delta: 1.0};
92
- let b = Y {delta: 1.0};
+ let a = Y { delta: 1.0 };
+ let b = Y { delta: 1.0 };
93
let _ = (-(a.delta - 0.5).abs()).total_cmp(&1.0);
94
//~^ neg_multiply
95
0 commit comments