Sign in
android
/
toolchain
/
rustc
/
15a6560abe9880705f51d219c1fa94f880dbaf35
/
.
/
src
/
test
/
ui
/
async-await
/
async-borrowck-escaping-block-error.rs
blob: 4f35fd52ca39beed26bfb01c5becd7ef41c7e593 [
file
] [
log
] [
blame
]
// edition:2018
// run-rustfix
fn
foo
()
->
Box
<
impl
std
::
future
::
Future
<
Output
=
u32
>>
{
let
x
=
0u32
;
Box
::
new
(
async
{
x
}
)
//~^ ERROR E0373
}
fn
main
()
{
let
_foo
=
foo
();
}