Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
no-params-non-move-async-closure.rs
blob: e9e43b3484aa0e019e73fe69fb2de60946ef53e5 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2018
//@ check-pass
#![
feature
(
async_closure
)]
fn
main
()
{
let
_
=
async
|
x
:
u8
|
{};
}