mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 06:12:31 +00:00
13 lines
188 B
Rust
13 lines
188 B
Rust
use foo::bar::{ //~ ERROR module `bar` is private
|
|
self
|
|
};
|
|
use foo::bar::{ //~ ERROR module `bar` is private
|
|
Bar
|
|
};
|
|
|
|
mod foo {
|
|
mod bar { pub type Bar = isize; }
|
|
}
|
|
|
|
fn main() {}
|