Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
privacy
/
private-item-simple.rs
blob: 68b20991a62628e3e52c08bc6f679b9e13d513f9 [
file
] [
edit
]
//! regression test for issue #3993
mod
a
{
fn
f
()
{}
}
fn
main
()
{
a
::
f
();
//~ ERROR function `f` is private
}
fn
foo
()
{
use
a
::
f
;
//~ ERROR function `f` is private
}