From 64d98f8ee037282c35007b64c2649055c56af1db Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:03 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/parser/no-const-fn-in-extern-block.stderr | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 tests/ui/parser/no-const-fn-in-extern-block.stderr (limited to 'tests/ui/parser/no-const-fn-in-extern-block.stderr') diff --git a/tests/ui/parser/no-const-fn-in-extern-block.stderr b/tests/ui/parser/no-const-fn-in-extern-block.stderr new file mode 100644 index 000000000..4ac0e2655 --- /dev/null +++ b/tests/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 + -- cgit v1.2.3