diff options
Diffstat (limited to 'tests/ui/parser/no-const-fn-in-extern-block.stderr')
-rw-r--r-- | tests/ui/parser/no-const-fn-in-extern-block.stderr | 29 |
1 files changed, 29 insertions, 0 deletions
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 + |