mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
382 B
Rust
18 lines
382 B
Rust
// 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 }
|
|
}
|