blob: 9c9594df96f0e7afd15ba15d41a6ca769f9673dc [file] [log] [blame]
// "Make 'Anonymous class derived from a class initializer' not static" "true"
import java.io.*;
class a {
void f() {
new a() {
<caret>static {
}
};
}
}