X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=libjava%2Ftestsuite%2Flibjava.lang%2FArray_1.java;fp=libjava%2Ftestsuite%2Flibjava.lang%2FArray_1.java;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=1fcf04eeb4d6e35c5b96af7007da248bbbad97fc;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/libjava/testsuite/libjava.lang/Array_1.java b/libjava/testsuite/libjava.lang/Array_1.java deleted file mode 100644 index 1fcf04ee..00000000 --- a/libjava/testsuite/libjava.lang/Array_1.java +++ /dev/null @@ -1,18 +0,0 @@ -// Test of array stuff. Technically this probably isn't in java.lang. - -public class Array_1 -{ - public static void main (String[] args) - { - int x[][] = { { 1, 2}, null }; - - System.out.println(Cloneable.class.isInstance(x)); - - // This example is from the Java Spec book. - int y[][] = (int[][]) x.clone(); - System.out.println(x == y); - System.out.println(x[0] == y[0] && x[1] == y[1]); - - System.out.println(x.getClass().getSuperclass()); - } -}