Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
issues
/
issue-76437-pub-crate-unsafe.rs
blob: 6e3039c2228963a764389c5900d15592371fa02b [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2018
mod
t
{
unsafe
pub
(
crate
)
fn
t
()
{}
//~^ ERROR expected one of `extern` or `fn`, found keyword `pub`
//~| HELP visibility `pub(crate)` must come before `unsafe`
}