mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-21 02:30:38 +00:00
18 lines
346 B
Rust
18 lines
346 B
Rust
//@ 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 }
|
|
}
|