rust/tests/ui/async-await/issue-68523-start.rs
Eduardo Sánchez Muñoz 17dfabff9c Change start to #[start] in some diagnosis
They refer to a function with the `start` attribute, but not necessarily named `start`.
2023-09-22 15:58:43 +02:00

10 lines
175 B
Rust

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