diff options
| author | topecongiro <seuchida@gmail.com> | 2017-04-19 23:34:45 +0900 |
|---|---|---|
| committer | topecongiro <seuchida@gmail.com> | 2017-05-01 15:57:08 +0900 |
| commit | 9befcded8c601bfb63bb5697da1bc7e9e878bf74 (patch) | |
| tree | 650e610147aff1c93951bd9c0655c3131117741c /tests/source/struct_tuple_visual.rs | |
| parent | 9dc643a6ae7e37c0b74e914d6e9835fd99d9b117 (diff) | |
Add tests for visual indent struct tuple
Diffstat (limited to 'tests/source/struct_tuple_visual.rs')
| -rw-r--r-- | tests/source/struct_tuple_visual.rs | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/source/struct_tuple_visual.rs b/tests/source/struct_tuple_visual.rs new file mode 100644 index 00000000000..8f935c1aa4d --- /dev/null +++ b/tests/source/struct_tuple_visual.rs @@ -0,0 +1,39 @@ +// rustfmt-normalize_comments: true +// rustfmt-wrap_comments: true +// rustfmt-error_on_line_overflow: false +// rustfmt-struct_lit_style: Visual +fn foo() { + + Fooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo(f(), b()); + + Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo(// Comment + foo(), /* Comment */ + // Comment + bar() /* Comment */); + + Foo(Bar, f()); + + Quux(if cond { + bar(); + }, + baz()); + + Baz(xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx, + zzzzz /* test */); + + 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. + item(), + // Praesent et diam eget libero egestas mattis sit amet vitae augue. + // Nam tincidunt congue enim, ut porta lorem lacinia consectetur. + Item); + + Diagram(// o This graph demonstrates how + // / \ significant whitespace is + // o o preserved. + // /|\ \ + // o o o o + G) + +} |
