Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
5f6fa960c254dfda8ba1d5dc2fb281b6908d8005
/
.
/
tests
/
ui
/
resolve
/
bad-env-capture2.rs
blob: 8298e6fcd243b07dc55b47830aa6d46a756caad6 [
file
]
fn
foo
(
x
:
isize
)
{
fn
bar
()
{
log
(
debug
,
x
);
}
//~^ ERROR can't capture dynamic environment in a fn item
//~| ERROR cannot find value `debug` in this scope
//~| ERROR cannot find function `log` in this scope
}
fn
main
()
{
foo
(
2
);
}