Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
0e3ee39c41462652f41993a5610265abea6daa96
/
.
/
src
/
test
/
compile-fail
/
capture2.rs
blob: 1b088c69511bac3258532616c6ba01dc672d5859 [
file
] [
log
] [
blame
]
// -*- rust -*-
// error-pattern: attempted dynamic environment-capture
fn
f
(
bool x
)
{
}
state obj foobar
(
bool x
)
{
drop
{
auto y
=
x
;
fn
test
()
{
f
(
y
);
}
}
}
fn
main
()
{
}