blob: 0afa486b9f7a4e658ea41ace1e683eadd03c98d0 [file] [log] [blame]
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() {}