diff options
Diffstat (limited to 'tests/ui/pub/pub-restricted-error-fn.stderr')
-rw-r--r-- | tests/ui/pub/pub-restricted-error-fn.stderr | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/ui/pub/pub-restricted-error-fn.stderr b/tests/ui/pub/pub-restricted-error-fn.stderr new file mode 100644 index 000000000..0511a821a --- /dev/null +++ b/tests/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 + |