235f33b230
Previously tests would not fail if they encountered an error such as LineOverflow or TrailingWhitespace. Making the tests error out will fix this mismatch between running rustfmt for real and running the tests. This also modifies all tests that previously contained errors so that they no longer contain errors (in almost all of the tests this is accomplished by setting error_on_line_overflow = false).
51 lines
1.8 KiB
Rust
51 lines
1.8 KiB
Rust
// rustfmt-normalize_comments: true
|
|
// rustfmt-wrap_comments: true
|
|
// rustfmt-struct_lit_style: Visual
|
|
// rustfmt-error_on_line_overflow: false
|
|
|
|
// 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 { // Comment
|
|
a: foo(), /* Comment */
|
|
// Comment
|
|
b: bar(), /* Comment */ };
|
|
|
|
Foo { a: Bar, b: f() };
|
|
|
|
Quux { x: if cond {
|
|
bar();
|
|
},
|
|
y: baz(), };
|
|
|
|
Baz { x: yxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx,
|
|
z: 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.
|
|
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, }
|
|
}
|