mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-14 14:21:29 +00:00
8 lines
191 B
Rust
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`
|
|
}
|