Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
async-await
/
async-borrowck-escaping-closure-error.rs
blob: e667b72aee530616b705ed4354b14c1cacba0a93 [
file
]
// edition:2018
#![
feature
(
async_closure
)]
fn
foo
()
->
Box
<
dyn std
::
future
::
Future
<
Output
=
u32
>>
{
let
x
=
0u32
;
Box
::
new
((
async
||
x
)())
//~^ ERROR E0373
}
fn
main
()
{
}