summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-92741.fixed
blob: d07aeb6c029fe57d5e92084d97f2f574dab75524 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// run-rustfix
fn main() {}
fn _foo() -> bool {
    if true { true } else { false }
}

fn _bar() -> bool {
    if true { true } else { false }
}

fn _baz() -> bool {
    if true { true } else { false }
}