2021-08-02 04:10:19 -05:00
|
|
|
// edition:2018
|
|
|
|
|
2021-10-24 08:11:11 -05:00
|
|
|
// Test that even when `const` is already present, the proposed fix is to remove the second `const`
|
2021-08-02 04:10:19 -05:00
|
|
|
|
|
|
|
const async const fn test() {}
|
|
|
|
//~^ ERROR expected one of `extern`, `fn`, or `unsafe`, found keyword `const`
|
|
|
|
//~| NOTE expected one of `extern`, `fn`, or `unsafe`
|
2021-10-24 08:11:11 -05:00
|
|
|
//~| HELP `const` already used earlier, remove this one
|
|
|
|
//~| NOTE `const` first seen here
|