blob: ea3ecf06912c53fce4e72ec7ce13536534d211d0 [file] [log] [blame]
class Outer {
private void foo() {}
class Inner extends Outer {
{
this.<error descr="'foo()' has private access in 'Outer'">foo</error>();
foo();
}
}
}