blob: a9196c4e3ee83364591afb03dbd4b8436fc7d59a [file] [log] [blame]
package simple_in;
public class TestFieldInitializerAnonymous {
Object field = new Object() {
{
if (0 < hashCode())
;
else
/*]*/foo()/*[*/;
}
};
void foo() {
toString();
toString();
}
}