summary refs log tree commit diff
path: root/src/test/ui/pub/pub-reexport-priv-extern-crate.rs
blob: e95d6924026ca88cebfceb77c800b9075d52c5d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#![allow(unused)]

extern crate core;
pub use core as reexported_core; //~ ERROR `core` is private, and cannot be re-exported
                                 //~^ WARN this was previously accepted

mod foo1 {
    extern crate core;
}

mod foo2 {
    use foo1::core; //~ ERROR `core` is private, and cannot be re-exported
                    //~^ WARN this was previously accepted
    pub mod bar {
        extern crate core;
    }
}

mod baz {
    pub use foo2::bar::core; //~ ERROR `core` is private, and cannot be re-exported
                             //~^ WARN this was previously accepted
}

fn main() {}