Sign in
android
/
toolchain
/
rustc
/
5c0824a599f2f1f4dcb9c92edf09f6c1b555988d
/
.
/
tests
/
ui
/
async-await
/
issue-68523-start.rs
blob: 2ced88a16cc45976ed2867dec511e25e219b0f3e [
file
] [
log
] [
blame
]
// edition:2018
#![
feature
(
start
)]
#[
start
]
pub
async
fn
start
(
_
:
isize
,
_
:
*
const
*
const
u8
)
->
isize
{
//~^ ERROR `start` is not allowed to be `async`
0
}