Dead
[official-gcc.git] / gomp-20050608-branch / libjava / testsuite / libjava.lang / N19990310_3.java
blobb6dfac28749dfba05925a22fa1e82e118ceff483
1 /*--------------------------------------------------------------------------*/
2 /* Name : N19990310_3 */
3 /* : */
4 /* Cause : Evaluation order miss, when make integer array. */
5 /* : */
6 /* Message : NG:[4]-->[1] */
7 /*--------------------------------------------------------------------------*/
9 public class N19990310_3 {
10 public static void main(String[] args) {
12 int x = 4;
14 int ary[][] = new int[x][x=1];
16 if ( ary.length == 4 ) {
17 System.out.println("OK");
18 } else {
19 System.out.println("NG:[4]-->[" +ary.length+ "]");