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