From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/pub/pub-restricted-error-fn.stderr | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/test/ui/pub/pub-restricted-error-fn.stderr (limited to 'src/test/ui/pub/pub-restricted-error-fn.stderr') diff --git a/src/test/ui/pub/pub-restricted-error-fn.stderr b/src/test/ui/pub/pub-restricted-error-fn.stderr new file mode 100644 index 000000000..0511a821a --- /dev/null +++ b/src/test/ui/pub/pub-restricted-error-fn.stderr @@ -0,0 +1,16 @@ +error: visibility `pub(crate)` is not followed by an item + --> $DIR/pub-restricted-error-fn.rs:1:1 + | +LL | pub(crate) () fn foo() {} + | ^^^^^^^^^^ the visibility + | + = help: you likely meant to define an item, e.g., `pub(crate) fn foo() {}` + +error: expected item, found `(` + --> $DIR/pub-restricted-error-fn.rs:1:12 + | +LL | pub(crate) () fn foo() {} + | ^ expected item + +error: aborting due to 2 previous errors + -- cgit v1.2.3