2021-08-02 04:10:19 -05:00
|
|
|
error: expected one of `extern`, `fn`, or `unsafe`, found keyword `const`
|
2021-10-24 08:11:11 -05:00
|
|
|
--> $DIR/const-async-const.rs:5:13
|
2021-08-02 04:10:19 -05:00
|
|
|
|
|
|
|
|
LL | const async const fn test() {}
|
2021-10-24 08:11:11 -05:00
|
|
|
| ^^^^^
|
|
|
|
| |
|
|
|
|
| expected one of `extern`, `fn`, or `unsafe`
|
|
|
|
| help: `const` already used earlier, remove this one
|
2021-08-02 04:10:19 -05:00
|
|
|
|
|
2021-10-24 08:11:11 -05:00
|
|
|
note: `const` first seen here
|
|
|
|
--> $DIR/const-async-const.rs:5:1
|
|
|
|
|
|
|
|
|
LL | const async const fn test() {}
|
|
|
|
| ^^^^^
|
2021-08-02 04:10:19 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|