blob: 8fba585317ce8fa196c73abd49e0d098bfebd7a9 [file] [log] [blame]
class C {
static C c;
static {
java.util.ArrayList<C> l = null;
l.add(c);
}
void foo() {
System.out.println(<selection>c</selection>);
}
}