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

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

12 lines
289 B
Plaintext

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