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, 0 insertions, 29 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
deleted file mode 100644
index 4ac0e2655..000000000
--- a/src/test/ui/parser/no-const-fn-in-extern-block.stderr
+++ /dev/null
@@ -1,29 +0,0 @@
-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
-