Sign in
android
/
toolchain
/
rustc
/
ff3f07ae99a30006dd85b9d73084edd9355c9db6
/
.
/
src
/
test
/
ui
/
no-args-non-move-async-closure.rs
blob: 4f5b2ea3783aa5f736d62bb093eceb5e2a5e86f7 [
file
] [
log
] [
blame
]
// edition:2018
#![
feature
(
arbitrary_self_types
,
async_await
,
await_macro
,
futures_api
,
pin
)]
fn
main
()
{
let
_
=
async
|
x
:
u8
|
{};
//~^ ERROR `async` non-`move` closures with arguments are not currently supported
}