mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 20:46:07 +03:00
10 lines
162 B
Rust
10 lines
162 B
Rust
// rustfmt-struct_lit_single_line: false
|
|
// Struct literal multiline-style
|
|
|
|
fn main() {
|
|
let lorem = Lorem {
|
|
ipsum: dolor,
|
|
sit: amet,
|
|
};
|
|
}
|