summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/no-const-async.stderr
blob: 90ec646c8c09cbb6a8e9477fdbb830e8ee313f6e (plain)
1
2
3
4
5
6
7
8
9
10
11
error: functions cannot be both `const` and `async`
  --> $DIR/no-const-async.rs:4:5
   |
LL | pub const async fn x() {}
   | ----^^^^^-^^^^^----------
   |     |     |
   |     |     `async` because of this
   |     `const` because of this

error: aborting due to previous error