]> git.lizzy.rs Git - rust.git/blob - tests/source/configs-attributes_on_same_line_as_variant-false.rs
Update tests
[rust.git] / tests / source / configs-attributes_on_same_line_as_variant-false.rs
1 // rustfmt-attributes_on_same_line_as_variant: false
2 // Option to place attributes on the same line as variants where possible
3
4 enum Lorem {
5     #[ serde(skip_serializing) ]
6     Ipsum,
7     #[ serde(skip_serializing) ]
8     Dolor,
9     #[ serde(skip_serializing) ]
10     Amet,
11 }