summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/alignment_2633/block_style.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/source/alignment_2633/block_style.rs')
-rw-r--r--src/tools/rustfmt/tests/source/alignment_2633/block_style.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/source/alignment_2633/block_style.rs b/src/tools/rustfmt/tests/source/alignment_2633/block_style.rs
new file mode 100644
index 000000000..77fb2919e
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/alignment_2633/block_style.rs
@@ -0,0 +1,8 @@
+// rustfmt-struct_field_align_threshold: 50
+
+fn func() {
+ Ok(ServerInformation { name: unwrap_message_string(items.get(0)),
+ vendor: unwrap_message_string(items.get(1)),
+ version: unwrap_message_string(items.get(2)),
+ spec_version: unwrap_message_string(items.get(3)), });
+}