Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
resolve
/
issue-104700-inner_scope.rs
blob: e8f28c113e3ad9114d246d0172fee0133f3b3929 [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
let
foo
=
1
;
{
let
bar
=
2
;
let
test_func
=
|
x
|
x
>
3
;
}
if
bar
==
2
{
//~ ERROR cannot find value
println
!(
"yes"
);
}
test_func
(
1
);
//~ ERROR cannot find function
}