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