Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
suggestions
/
sugg-else-for-closure.rs
blob: 540ced91fc950690a93efaf6cebc97628c4a5c86 [
file
] [
log
] [
blame
]
// run-rustfix
fn
main
()
{
let
x
=
"com.example.app"
;
let
y
:
Option
<&
str
>
=
None
;
let
_s
=
y
.
unwrap_or
(||
x
.
split
(
'.'
).
nth
(
1
).
unwrap
());
//~^ ERROR: mismatched types [E0308]
}