Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
async-await
/
no-params-non-move-async-closure.rs
blob: 3b15f35c260dc81460c7421bd3d64980e3f02afc [
file
] [
log
] [
blame
]
// edition:2018
#![
feature
(
async_closure
)]
fn
main
()
{
let
_
=
async
|
x
:
u8
|
{};
//~^ ERROR `async` non-`move` closures with parameters are not currently supported
}