Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
// aux-build:some_crate.rs
// compile-flags:--extern some_crate
// edition:2018
mod foo {
pub use some_crate;
}
fn main() {
::some_crate::hello();
foo::some_crate::hello();