about summary refs log tree commit diff
path: root/tests/ui/issues/issue-92741.fixed
blob: cb37d25273f4dbadba7ad3f7d0bb8299d0253b26 (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 }
}