summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0365.rs
blob: f12ff96bb8aee0e9c7db0e6b00e3ff6511b037f5 (plain)
1
2
3
4
5
6
7
8
mod foo {
    pub const X: u32 = 1;
}

pub use foo as foo2;
//~^ ERROR `foo` is private, and cannot be re-exported [E0365]

fn main() {}