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

9 lines
227 B
Text
Raw Normal View History

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