mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-18 16:17:00 +07:00
9 lines
232 B
Java
9 lines
232 B
Java
class B {
|
|
|
|
public static final int NINE = 9;
|
|
|
|
public static void foo(boolean f) {
|
|
Object[] objs = new Object[0];
|
|
System.out.println(objs[NINE] != null ? Integer.valueOf(objs[NINE].toString()) : null);
|
|
}
|
|
} |