2023-02-06 08:33:54 -06:00
|
|
|
//@ run-rustfix
|
2023-02-05 10:30:00 -06:00
|
|
|
fn main() {}
|
2023-02-06 08:33:54 -06:00
|
|
|
fn _foo() -> bool {
|
|
|
|
& //~ ERROR 4:5: 6:36: mismatched types [E0308]
|
2023-02-05 10:30:00 -06:00
|
|
|
mut
|
|
|
|
if true { true } else { false }
|
|
|
|
}
|
2023-02-06 08:30:29 -06:00
|
|
|
|
2023-02-06 08:33:54 -06:00
|
|
|
fn _bar() -> bool {
|
|
|
|
& //~ ERROR 10:5: 11:40: mismatched types [E0308]
|
2023-02-06 08:30:29 -06:00
|
|
|
mut if true { true } else { false }
|
|
|
|
}
|
|
|
|
|
2023-02-06 08:33:54 -06:00
|
|
|
fn _baz() -> bool {
|
|
|
|
& mut //~ ERROR 15:5: 16:36: mismatched types [E0308]
|
2023-02-06 08:30:29 -06:00
|
|
|
if true { true } else { false }
|
|
|
|
}
|