mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
247 B
Rust
16 lines
247 B
Rust
mod bar1 {
|
|
pub use self::bar2::Foo;
|
|
mod bar2 {
|
|
pub struct Foo;
|
|
|
|
impl Foo {
|
|
const ID: i32 = 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(1, bar1::Foo::ID);
|
|
//~^ERROR associated constant `ID` is private
|
|
}
|