Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
mod foo {
pub fn f() {}
use foo as bar;
pub use self::f as bar;
}
mod bar {
use foo::bar::f as g; //~ ERROR module import `bar` is private
use foo as f;
pub use foo::*;
use bar::f::f; //~ ERROR module import `f` is private
fn main() {}