From 4ed46e8fd51ff774e1ac7d438396d44e698fe0c5 Mon Sep 17 00:00:00 2001 From: Caio Date: Sat, 21 Dec 2024 23:01:37 -0300 Subject: [PATCH] Rustfmt --- library/core/tests/macros.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/library/core/tests/macros.rs b/library/core/tests/macros.rs index 755851684492..c3fdddd425fe 100644 --- a/library/core/tests/macros.rs +++ b/library/core/tests/macros.rs @@ -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)) }}; -} \ No newline at end of file +}