Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
suggestions
/
issue-83943.fixed
blob: f0ff26c446654e55371bdde58ff9e11c923d1dee [
file
] [
log
] [
blame
]
//@ run-rustfix
fn main
()
{
if
true
{
"A"
.
to_string
()
}
else
{
"B"
.
to_string
()
//~ ERROR `if` and `else` have incompatible types
};
}