Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-3993.rs
blob: 9dea54ea779e145112c56fc38994e42e8861aa3c [
file
] [
log
] [
blame
] [
edit
]
use
zoo
::
fly
;
//~ ERROR: function `fly` is private
mod
zoo
{
fn
fly
()
{}
}
fn
main
()
{
fly
();
}