rust/tests/ui/pub/pub-reexport-priv-extern-crate.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
439 B
Rust
Raw Normal View History

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 crate import `core` is private
2016-10-07 09:23:41 +00:00
pub mod bar {
extern crate core;
}
}
mod baz {
pub use foo2::bar::core; //~ ERROR crate import `core` is private
2016-10-07 09:23:41 +00:00
}
fn main() {}