blob: f2e5fdafd9cb85cb3c077e88ec894d0be207b14a [file] [log] [blame] [edit]
//@ run-rustfix
fn main() {}
fn _foo() -> bool {
& //~ ERROR 4:5: 6:36: mismatched types [E0308]
mut
if true { true } else { false }
}
fn _bar() -> bool {
& //~ ERROR 10:5: 11:40: mismatched types [E0308]
mut if true { true } else { false }
}
fn _baz() -> bool {
& mut //~ ERROR 15:5: 16:36: mismatched types [E0308]
if true { true } else { false }
}