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