mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-09 05:23:07 +00:00
11 lines
166 B
Rust
11 lines
166 B
Rust
// rustfmt-single_line_if_else_max_width: 10
|
|
// Single line if-else max width
|
|
|
|
fn main() {
|
|
let lorem = if ipsum {
|
|
dolor
|
|
} else {
|
|
sit
|
|
};
|
|
}
|