summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/configs/control_brace_style/always_next_line.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/source/configs/control_brace_style/always_next_line.rs')
-rw-r--r--src/tools/rustfmt/tests/source/configs/control_brace_style/always_next_line.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/source/configs/control_brace_style/always_next_line.rs b/src/tools/rustfmt/tests/source/configs/control_brace_style/always_next_line.rs
new file mode 100644
index 000000000..c4ddad9ce
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/configs/control_brace_style/always_next_line.rs
@@ -0,0 +1,10 @@
+// rustfmt-control_brace_style: AlwaysNextLine
+// Control brace style
+
+fn main() {
+ if lorem { println!("ipsum!"); } else { println!("dolor!"); }
+ match magi {
+ Homura => "Akemi",
+ Madoka => "Kaname",
+ }
+}