Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
privacy
/
private-item-simple.rs
blob: 1f718ed9201a6e795c4b99713bc787eed55a307d [
file
] [
log
] [
blame
]
mod
a
{
fn
f
()
{}
}
fn
main
()
{
a
::
f
();
//~ ERROR function `f` is private
}