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