source: trunk/gcc/libjava/testsuite/libjava.lang/inner3.java

Last change on this file was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 419 bytes
Line 
1// Class inner3
2// Generated on Tue Dec 7 11:37:43 PST 1999
3//
4
5class inner3 {
6 int bar;
7 public static void main (String[] arg)
8 {
9 System.out.println ("Testing class `inner3'...");
10 new inner3().bar ();
11 }
12 void bar () {
13 t xx = this.new t ();
14 xx.bar ();
15 }
16 void foo () { bar = 3; }
17 class t {
18 void bar () {
19 inner3.this.foo ();
20 System.out.println (inner3.this.bar);
21 }
22 }
23}
Note: See TracBrowser for help on using the repository browser.