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