summaryrefslogtreecommitdiffstats
path: root/tests/ui/privacy/issue-13641.rs
blob: 198cea4289cfca215e091cb235d66653aeeac9b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
mod a {
    struct Foo;
    impl Foo { pub fn new() {} }
    enum Bar {}
    impl Bar { pub fn new() {} }
}

fn main() {
    a::Foo::new();
    //~^ ERROR: struct `Foo` is private
    a::Bar::new();
    //~^ ERROR: enum `Bar` is private
}