b7d61254a7
Set to false by default for now, since we are having a lot of problems with comments. We should set to true once we have a better algorithm.
60 lines
3.0 KiB
Rust
60 lines
3.0 KiB
Rust
// rustfmt-wrap_comments: true
|
|
// rustfmt-struct_lit_style: Visual
|
|
|
|
// Struct literal expressions.
|
|
|
|
fn main() {
|
|
let x = Bar;
|
|
|
|
// Comment
|
|
let y = Foo { a: x };
|
|
|
|
Foo { a: foo(), // comment
|
|
// comment
|
|
b: bar(),
|
|
..something };
|
|
|
|
Fooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo { a: f(), b: b() };
|
|
|
|
Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo { // Commen
|
|
// t
|
|
a: foo(), /* C
|
|
* o
|
|
* m
|
|
* m
|
|
* e
|
|
* n
|
|
* t */
|
|
// Commen
|
|
// t
|
|
b: bar(), /* C
|
|
* o
|
|
* m
|
|
* m
|
|
* e
|
|
* n
|
|
* t */ };
|
|
|
|
Foo { a: Bar, b: f() };
|
|
|
|
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, }
|
|
}
|