visibility with anonymous classes fixed

This commit is contained in:
anna
2013-05-13 17:02:53 +02:00
parent 3bf02adca3
commit 8df5997677
2 changed files with 17 additions and 1 deletions
@@ -35,4 +35,14 @@ abstract class EnumPrivateMethodTest2 {
public abstract void execute();
private void firstMethod() {}
}
class Test {
private class Foo {
private Foo() {}
{
new Foo(){};
}
}
}