rust/tests/ui/parser/issues/issue-76437-pub-crate-unsafe.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
371 B
Plaintext
Raw Normal View History

error: expected one of `extern` or `fn`, found keyword `pub`
--> $DIR/issue-76437-pub-crate-unsafe.rs:4:12
|
LL | unsafe pub(crate) fn t() {}
| -------^^^-------
| | |
| | expected one of `extern` or `fn`
| help: visibility `pub(crate)` must come before `unsafe`: `pub(crate) unsafe`
error: aborting due to previous error