blob: 679e79eeb6b3f0115da83ac252e9ef5fd8c08f53 [file] [log] [blame]
public class A {
static class B {
B() {
}
}
}
class C {
void foo() {
new A.B() {
public String toString() {
return super.toString();
}
}.toString();
}
}