Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// check-pass
// edition:2018
mod my {
pub mod sub {
pub fn bar() {}
}
mod sub {
fn foo() {
use my::sub;
{
use sub::bar; // OK
fn main() {}