Skip to content

Commit

Permalink
Rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
c410-f3r committed Dec 22, 2024
1 parent a4d6fbf commit 4ed46e8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions library/core/tests/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,12 @@ fn _expression() {
}

fn _parentheses() -> (u32, u32) {
fn _foo() -> (u32, u32) { (1, 2) }
fn _foo() -> (u32, u32) {
(1, 2)
}

return cfg_match! {{
windows => (_foo()),
_ => ((3, 4))
}};
}
}

0 comments on commit 4ed46e8

Please sign in to comment.