2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / testsuite / libjava.lang / update_outer.java
blobb2e8437039532e36557fce1fc3e4d7ec85ad0ade
1 // Class update_outer
2 // Generated on Thu Nov 18 21:37:21 UTC 1999
3 //
5 class update_outer {
7 private String foo;
9 class update_outer_inner {
10 void test () {
11 foo += " M$";
12 System.out.println ("foo=`"+foo+"'");
17 void foo ()
19 foo = "780";
20 update_outer_inner inn = this.new update_outer_inner ();
21 inn.test ();
23 public static void main (String[] arg)
25 System.out.println ("Testing class `update_outer'...");
26 new update_outer().foo ();