Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// aux-build:issue-21202.rs
extern crate issue_21202 as crate1;
use crate1::A;
mod B {
use crate1::A::Foo;
fn bar(f: Foo) {
Foo::foo(&f);
//~^ ERROR: associated function `foo` is private
}
fn main() { }