packages feed

language-java-0.2.9: tests/java/good/TestArray.java

public class TestArray {
    public static void main(String[] args) {
        while (true) { int x = 1; }
        if (1 + 1 == 2) {
        } else {
            int y = 2, z = 4;
            while (y > 0) y--;
            System.out.println(y);
            int w[][] = {{1,2}, {3}};
        }
        
    }
}