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