]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/nested-if-else.rs
Merge commit 'e36a20c24f35a4cee82bbdc600289104c9237c22' into ra-sync-and-pms-component
[rust.git] / src / tools / rustfmt / tests / target / nested-if-else.rs
1 fn issue1518() {
2     Some(Object {
3         field: if a {
4             a_thing
5         } else if b {
6             b_thing
7         } else {
8             c_thing
9         },
10     })
11 }