2018-10-27 20:21:34 +03:00
|
|
|
use foo::bar::{ //~ ERROR module `bar` is private
|
|
|
|
self
|
2014-07-18 00:56:56 +02:00
|
|
|
};
|
2018-10-27 20:21:34 +03:00
|
|
|
use foo::bar::{ //~ ERROR module `bar` is private
|
|
|
|
Bar
|
2014-07-18 00:56:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
mod foo {
|
2015-01-08 21:54:35 +11:00
|
|
|
mod bar { pub type Bar = isize; }
|
2014-07-18 00:56:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|