Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
ui
/
unboxed-closures
/
unboxed-closure-region.rs
blob: f202492eda553ad4b5ec5eefe8aecf61914d8dfd [
file
] [
log
] [
blame
]
// Test that an unboxed closure that captures a free variable by
// reference cannot escape the region of that variable.
fn
main
()
{
let
_f
=
{
let
x
=
0
;
||
x
//~ ERROR `x` does not live long enough
};
_f
;
}