2016-08-06 19:44:49 +00:00
|
|
|
mod foo {
|
|
|
|
pub const X: u32 = 1;
|
|
|
|
}
|
|
|
|
|
2016-08-14 19:30:50 +00:00
|
|
|
pub use foo as foo2;
|
2021-11-05 19:43:55 +00:00
|
|
|
//~^ ERROR `foo` is only public within the crate, and cannot be re-exported outside [E0365]
|
2016-08-06 19:44:49 +00:00
|
|
|
|
|
|
|
fn main() {}
|