rust/src/test/ui/async-await/no-async-const.stderr

9 lines
249 B
Text
Raw Normal View History

error: expected one of `extern`, `fn`, or `unsafe`, found keyword `const`
--> $DIR/no-async-const.rs:4:11
2019-06-24 17:48:21 -07:00
|
LL | pub async const fn x() {}
| ^^^^^ expected one of `extern`, `fn`, or `unsafe`
2019-06-24 17:48:21 -07:00
error: aborting due to previous error