rust/tests/source/nested-if-else.rs
2018-03-02 15:07:13 +13:00

11 lines
176 B
Rust

fn issue1518() {
Some(Object {
field: if a {
a_thing
} else if b {
b_thing
} else {
c_thing
},
})
}