rust/tests/source/configs-attributes_on_same_line_as_variant-false.rs

12 lines
274 B
Rust
Raw Normal View History

// rustfmt-attributes_on_same_line_as_variant: false
// Option to place attributes on the same line as variants where possible
enum Lorem {
#[ serde(skip_serializing) ]
Ipsum,
#[ serde(skip_serializing) ]
Dolor,
#[ serde(skip_serializing) ]
Amet,
}