summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/no-const-fn-in-extern-block.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/no-const-fn-in-extern-block.stderr')
-rw-r--r--src/test/ui/parser/no-const-fn-in-extern-block.stderr29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/test/ui/parser/no-const-fn-in-extern-block.stderr b/src/test/ui/parser/no-const-fn-in-extern-block.stderr
new file mode 100644
index 000000000..4ac0e2655
--- /dev/null
+++ b/src/test/ui/parser/no-const-fn-in-extern-block.stderr
@@ -0,0 +1,29 @@
+error: functions in `extern` blocks cannot have qualifiers
+ --> $DIR/no-const-fn-in-extern-block.rs:2:14
+ |
+LL | extern "C" {
+ | ---------- in this `extern` block
+LL | const fn foo();
+ | ^^^
+ |
+help: remove the qualifiers
+ |
+LL | fn foo();
+ | ~~
+
+error: functions in `extern` blocks cannot have qualifiers
+ --> $DIR/no-const-fn-in-extern-block.rs:4:21
+ |
+LL | extern "C" {
+ | ---------- in this `extern` block
+...
+LL | const unsafe fn bar();
+ | ^^^
+ |
+help: remove the qualifiers
+ |
+LL | fn bar();
+ | ~~
+
+error: aborting due to 2 previous errors
+