summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-87217-keyword-order/const-async-const.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/issues/issue-87217-keyword-order/const-async-const.rs')
-rw-r--r--tests/ui/parser/issues/issue-87217-keyword-order/const-async-const.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ui/parser/issues/issue-87217-keyword-order/const-async-const.rs b/tests/ui/parser/issues/issue-87217-keyword-order/const-async-const.rs
new file mode 100644
index 000000000..df0cd5439
--- /dev/null
+++ b/tests/ui/parser/issues/issue-87217-keyword-order/const-async-const.rs
@@ -0,0 +1,9 @@
+// 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