Skip to content

Commit 4ed46e8

Browse files
committed
Rustfmt
1 parent a4d6fbf commit 4ed46e8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

library/core/tests/macros.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,12 @@ fn _expression() {
206206
}
207207

208208
fn _parentheses() -> (u32, u32) {
209-
fn _foo() -> (u32, u32) { (1, 2) }
209+
fn _foo() -> (u32, u32) {
210+
(1, 2)
211+
}
210212

211213
return cfg_match! {{
212214
windows => (_foo()),
213215
_ => ((3, 4))
214216
}};
215-
}
217+
}

0 commit comments

Comments
 (0)