Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Prefix in imports with empty braces should be resolved and checked privacy, stability, etc.
mod m {
mod n {}
}
use m::n::{};
//~^ ERROR module `n` is private
fn main() {}