summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/configs/match_arm_blocks
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/source/configs/match_arm_blocks')
-rw-r--r--src/tools/rustfmt/tests/source/configs/match_arm_blocks/false.rs11
-rw-r--r--src/tools/rustfmt/tests/source/configs/match_arm_blocks/true.rs11
2 files changed, 22 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/source/configs/match_arm_blocks/false.rs b/src/tools/rustfmt/tests/source/configs/match_arm_blocks/false.rs
new file mode 100644
index 000000000..53e37e13c
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/configs/match_arm_blocks/false.rs
@@ -0,0 +1,11 @@
+// rustfmt-match_arm_blocks: false
+// Wrap match-arms
+
+fn main() {
+ match lorem {
+ true => foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo(x),
+ false => {
+ println!("{}", sit)
+ }
+ }
+}
diff --git a/src/tools/rustfmt/tests/source/configs/match_arm_blocks/true.rs b/src/tools/rustfmt/tests/source/configs/match_arm_blocks/true.rs
new file mode 100644
index 000000000..a452b13cd
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/configs/match_arm_blocks/true.rs
@@ -0,0 +1,11 @@
+// rustfmt-match_arm_blocks: true
+// Wrap match-arms
+
+fn main() {
+ match lorem {
+ true => foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo(x),
+ false => {
+ println!("{}", sit)
+ }
+ }
+}