mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-04 14:11:27 +00:00
17 lines
214 B
Rust
17 lines
214 B
Rust
// run-pass
|
|
|
|
mod bar1 {
|
|
pub use self::bar2::Foo;
|
|
mod bar2 {
|
|
pub struct Foo;
|
|
|
|
impl Foo {
|
|
pub const ID: i32 = 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(1, bar1::Foo::ID);
|
|
}
|