IDEA-67859

This commit is contained in:
anna
2013-01-07 19:12:45 +01:00
parent 286995282d
commit 542009391b
3 changed files with 11 additions and 1 deletions
@@ -0,0 +1,9 @@
class Outer {
private void foo() {}
class Inner extends Outer {
{
this.<error descr="'foo()' has private access in 'Outer'">foo</error>();
foo();
}
}
}