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

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

12 lines
291 B
Plaintext
Raw Normal View History

2023-09-26 11:02:05 -05:00
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 1 previous error
2023-09-26 11:02:05 -05:00