2017-01-15 19:50:27 -06:00
|
|
|
// rustfmt-normalize_comments: true
|
2015-11-09 13:03:01 -06:00
|
|
|
// rustfmt-wrap_comments: true
|
2017-11-13 01:09:59 -06:00
|
|
|
// rustfmt-indent_style: Visual
|
2017-11-23 19:45:18 -06:00
|
|
|
// rustfmt-struct_lit_single_line: false
|
2017-02-19 12:57:02 -06:00
|
|
|
// rustfmt-error_on_line_overflow: false
|
2015-09-04 18:31:39 -05:00
|
|
|
|
|
|
|
// 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(), };
|
|
|
|
|
2016-04-11 13:45:47 -05:00
|
|
|
Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo { // Comment
|
|
|
|
a: foo(), /* Comment */
|
|
|
|
// Comment
|
|
|
|
b: bar(), /* Comment */ };
|
2015-09-04 18:31:39 -05:00
|
|
|
|
|
|
|
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, }
|
|
|
|
}
|