// Copyright 2017 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. #![allow(unused)] extern crate core; pub use core as reexported_core; //~ ERROR `core` is private, and cannot be reexported mod foo1 { extern crate core; } mod foo2 { use foo1::core; //~ ERROR `core` is private, and cannot be reexported pub mod bar { extern crate core; } } mod baz { pub use foo2::bar::core; //~ ERROR `core` is private, and cannot be reexported } fn main() {}