1 /* SSA-DCE was removing the initialization of the temporary object
2 in getFoo because it wasn't realizing that the pointer was needed
7 public static Object
[] getFoo()
9 return new Object
[] {"OK"};
12 public static void main(String
[] args
)
14 Object
[] a
= getFoo();
15 System
.out
.println(a
[0]);