summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/match_overflow_expr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/source/match_overflow_expr.rs')
-rw-r--r--src/tools/rustfmt/tests/source/match_overflow_expr.rs53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/source/match_overflow_expr.rs b/src/tools/rustfmt/tests/source/match_overflow_expr.rs
new file mode 100644
index 000000000..91275a894
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/match_overflow_expr.rs
@@ -0,0 +1,53 @@
+// rustfmt-overflow_delimited_expr: true
+
+fn main() {
+ println!(
+ "Foobar: {}",
+ match "input" {
+ "a" => "",
+ "b" => "",
+ "c" => "",
+ "d" => "",
+ "e" => "",
+ "f" => "",
+ "g" => "",
+ "h" => "",
+ "i" => "",
+ "j" => "",
+ "k" => "",
+ "l" => "",
+ "m" => "",
+ "n" => "",
+ "o" => "",
+ "p" => "",
+ "q" => "",
+ "r" => "Rust",
+ }
+ );
+}
+
+fn main() {
+ println!(
+ "Very Long Input String Which Makes It Impossible To Fit On The Same Line: {}",
+ match "input" {
+ "a" => "",
+ "b" => "",
+ "c" => "",
+ "d" => "",
+ "e" => "",
+ "f" => "",
+ "g" => "",
+ "h" => "",
+ "i" => "",
+ "j" => "",
+ "k" => "",
+ "l" => "",
+ "m" => "",
+ "n" => "",
+ "o" => "",
+ "p" => "",
+ "q" => "",
+ "r" => "Rust",
+ }
+ );
+}