Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
d91e86e963128ebd9e0baee42d1504670dab1565
/
.
/
tests
/
ui
/
nll
/
issue-40510-1.rs
blob: ca53dcd9b41fad45a1596c67cabf76d1055fc4fc [
file
] [
log
] [
blame
]
#![
allow
(
unused
)]
fn
f
()
{
let
mut
x
:
Box
<()>
=
Box
::
new
(());
||
{
&
mut
x
};
//~^^ ERROR captured variable cannot escape `FnMut` closure body
}
fn
main
()
{}