mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
15 lines
247 B
Rust
15 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
|
|
}
|