]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/issue-76437-pub-crate-unsafe.rs
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / src / test / ui / parser / issue-76437-pub-crate-unsafe.rs
1 // edition:2018
2
3 mod t {
4 unsafe pub(crate) fn t() {}
5 //~^ ERROR expected one of `extern` or `fn`, found keyword `pub`
6 //~| HELP visibility `pub(crate)` must come before `unsafe`
7 }