2018-10-27 12:21:34 -05:00
|
|
|
use foo::bar::{ //~ ERROR module `bar` is private
|
|
|
|
self
|
2014-07-17 17:56:56 -05:00
|
|
|
};
|
2018-10-27 12:21:34 -05:00
|
|
|
use foo::bar::{ //~ ERROR module `bar` is private
|
|
|
|
Bar
|
2014-07-17 17:56:56 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
mod foo {
|
2015-01-08 04:54:35 -06:00
|
|
|
mod bar { pub type Bar = isize; }
|
2014-07-17 17:56:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|