about summary refs log tree commit diff
path: root/tests/ui/issues/issue-92741.rs
blob: 1c5d5810a57ee5a99298e2e764f2666c83a74fe2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//@ run-rustfix
fn main() {}
fn _foo() -> bool {
    &  //~ ERROR mismatched types [E0308]
    mut
    if true { true } else { false }
}

fn _bar() -> bool {
    &  //~ ERROR mismatched types [E0308]
    mut if true { true } else { false }
}

fn _baz() -> bool {
    & mut //~ ERROR mismatched types [E0308]
    if true { true } else { false }
}