mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 03:03:40 +00:00
12 lines
176 B
Rust
12 lines
176 B
Rust
fn issue1518() {
|
|
Some(Object {
|
|
field: if a {
|
|
a_thing
|
|
} else if b {
|
|
b_thing
|
|
} else {
|
|
c_thing
|
|
},
|
|
})
|
|
}
|