rust/tests/ui/async-await/const-async-fn-in-main.rs
Milo 35f9345076 add test
fix tidy

remove dir
2023-09-26 20:15:28 +00:00

8 lines
191 B
Rust

// edition:2021
// Check what happens when a const async fn is in the main function (#102796)
fn main() {
const async fn a() {}
//~^ ERROR functions cannot be both `const` and `async`
}