X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=libjava%2Ftestsuite%2Flibjava.lang%2Ftp.java;fp=libjava%2Ftestsuite%2Flibjava.lang%2Ftp.java;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=b6d9fbec48f08ec01b6d7e090e58e65f3b1cbff8;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/libjava/testsuite/libjava.lang/tp.java b/libjava/testsuite/libjava.lang/tp.java deleted file mode 100644 index b6d9fbec..00000000 --- a/libjava/testsuite/libjava.lang/tp.java +++ /dev/null @@ -1,36 +0,0 @@ -// Class tp -// Generated on Thu Nov 4 16:35:03 PST 1999 -// - -class tp { - private int i; - void foo () { - tp.z x1 = new z(); - tp.z.y x = x1.new y(); - x.bar (); - x.print(); - } - public static void main (String[] arg) - { - System.out.println ("Testing class `tp'..."); - new tp ().foo(); - } - class z { - private int j; - void foo () { - tp.this.i = 3; - } - class y { - private int k; - void bar () { - tp.this.i = 3; - z.this.j = 4; - y.this.k = 34; - } - void print () { - System.out.println ("i="+i+", j="+j+", k="+k); - } - } - } -} -