mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 19:58:32 +00:00
10 lines
151 B
Rust
10 lines
151 B
Rust
![]() |
//@ run-rustfix
|
||
|
|
||
|
fn main() {
|
||
|
if true {
|
||
|
"A".to_string()
|
||
|
} else {
|
||
|
"B" //~ ERROR `if` and `else` have incompatible types
|
||
|
};
|
||
|
}
|