summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/struct_lits_visual_multiline.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/target/struct_lits_visual_multiline.rs')
-rw-r--r--src/tools/rustfmt/tests/target/struct_lits_visual_multiline.rs49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/target/struct_lits_visual_multiline.rs b/src/tools/rustfmt/tests/target/struct_lits_visual_multiline.rs
new file mode 100644
index 000000000..3f43ef0c9
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/struct_lits_visual_multiline.rs
@@ -0,0 +1,49 @@
+// rustfmt-normalize_comments: true
+// rustfmt-wrap_comments: true
+// rustfmt-indent_style: Visual
+// rustfmt-struct_lit_single_line: false
+
+// Struct literal expressions.
+
+fn main() {
+ let x = Bar;
+
+ // Comment
+ let y = Foo { a: x };
+
+ Foo { a: foo(), // comment
+ // comment
+ b: bar(),
+ ..something };
+
+ Fooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo { a: foo(),
+ b: bar() };
+
+ Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo { // Comment
+ a: foo(), /* Comment */
+ // Comment
+ b: bar() /* Comment */ };
+
+ Foo { a: Bar,
+ b: foo() };
+
+ Quux { x: if cond {
+ bar();
+ },
+ y: baz() };
+
+ A { // Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a diam lectus. Sed sit
+ // amet ipsum mauris. Maecenas congue ligula ac quam viverra nec consectetur ante
+ // hendrerit. Donec et mollis dolor.
+ first: item(),
+ // Praesent et diam eget libero egestas mattis sit amet vitae augue.
+ // Nam tincidunt congue enim, ut porta lorem lacinia consectetur.
+ second: Item };
+
+ Diagram { // o This graph demonstrates how
+ // / \ significant whitespace is
+ // o o preserved.
+ // /|\ \
+ // o o o o
+ graph: G }
+}