summaryrefslogtreecommitdiffstats
path: root/tests/ui/privacy/auxiliary/pub_use_mods_xcrate.rs
blob: 74d3504d5beb2afb6fc615943dee10d2759b706d (plain)
1
2
3
4
5
6
7
8
9
10
pub mod a {
    pub use a::b::c;

    pub mod b {
        pub mod c {
            fn f(){}
            fn g(){}
        }
    }
}