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