summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/issue-68523-start.rs
blob: 2ced88a16cc45976ed2867dec511e25e219b0f3e (plain)
1
2
3
4
5
6
7
8
9
// edition:2018

#![feature(start)]

#[start]
pub async fn start(_: isize, _: *const *const u8) -> isize {
//~^ ERROR `start` is not allowed to be `async`
    0
}