1 mod a {
f()2     fn f() {}
3 }
4 
main()5 fn main() {
6     a::f(); //~ ERROR function `f` is private
7 }
8