rust/tests/ui/parser/issues/issue-87217-keyword-order/const-async-const.rs
2023-01-11 09:32:08 +00:00

10 lines
371 B
Rust

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