rust/tests/target/nested-if-else.rs

12 lines
176 B
Rust
Raw Normal View History

fn issue1518() {
Some(Object {
2017-06-12 06:01:41 +02:00
field: if a {
a_thing
} else if b {
b_thing
} else {
c_thing
},
})
}