rust/tests/ui/async-await/const-async-fn-in-main.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
192 B
Rust
Raw Normal View History

2023-09-26 11:02:05 -05:00
//@ 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`
}