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