blob: 1c5d5810a57ee5a99298e2e764f2666c83a74fe2 [file] [log] [blame] [edit]
//@ 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 }
}