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
}