fix tidy

remove dir
This commit is contained in:
Milo 2023-09-26 16:02:05 +00:00
parent 6710e3312d
commit 35f9345076
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,7 @@
// 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`
}

View File

@ -0,0 +1,11 @@
error: functions cannot be both `const` and `async`
--> $DIR/const-async-fn-in-main.rs:5:5
|
LL | const async fn a() {}
| ^^^^^-^^^^^----------
| | |
| | `async` because of this
| `const` because of this
error: aborting due to previous error