Sign in
fuchsia
/
third_party
/
rust
/
2a3e17c6d5c49eeb770ade2fa660f98e9cce0ce0
/
.
/
tests
/
ui
/
duplicate-label-E0381-issue-129274.rs
blob: b2156e630c87fad23a2d10d2cc76a75668117390 [
file
] [
log
] [
blame
]
fn
main
()
{
fn
test
()
{
loop
{
let
blah
:
Option
<
String
>;
if
true
{
blah
=
Some
(
""
.
to_string
());
}
if
let
Some
(
blah
)
=
blah
.
as_ref
()
{
//~ ERROR E0381
}
}
}
println
!(
"{:?}"
,
test
())
}