about summary refs log tree commit diff
path: root/tests/ui/privacy/restricted/private-in-public.rs
blob: f54ab1d5a4adb3d2718d43bfb1409eee86cb5b49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ check-pass
mod foo {
    struct Priv;
    mod bar {
        use crate::foo::Priv;
        pub(super) fn f(_: Priv) {}
        pub(crate) fn g(_: Priv) {}
        pub(crate) fn h(_: Priv) {}
    }
}

fn main() { }