aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/privacy1.rs
blob: 61a2ae936356f0c8c8e85235a10bc7f74b892beb (plain)
1
2
3
4
5
6
7
8
9
10
11
mod orange {
    mod green {
        fn sain() {}
        pub fn doux() {}
    }

    fn brown() {// E0603
        green::sain(); // { dg-error "definition is private in this context" }
        green::doux();
    }
}