public class a {
void f1()
{
new a() {
static
int i;
// compile time constant is OK
static final int f1 = 3 < 4 ? (a.ix==5 ? 1 : 3) / 4 + 18 : 0;
// its not a compile time constant
static
final Object o = null;
static
final int f2 = x instanceof Integer ? 1 : 0;
static
class a_ic_c2 {}
static
int a_ic_m2(String s) { return 0; }
// static initializer
static
{}
};
}
}