mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
33 lines
655 B
Java
33 lines
655 B
Java
|
|
// Class private_indirect_write
|
||
|
|
// Generated on Tue Nov 16 15:44:49 UTC 1999
|
||
|
|
//
|
||
|
|
|
||
|
|
class private_indirect_write {
|
||
|
|
|
||
|
|
private int foo;
|
||
|
|
|
||
|
|
class private_indirect_write_inner {
|
||
|
|
void test () {
|
||
|
|
}
|
||
|
|
|
||
|
|
class other {
|
||
|
|
void test () {
|
||
|
|
foo = 670;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
void foo ()
|
||
|
|
{
|
||
|
|
private_indirect_write_inner inn = this.new private_indirect_write_inner ();
|
||
|
|
private_indirect_write_inner.other x = inn.new other ();
|
||
|
|
x.test ();
|
||
|
|
System.out.println ("foo="+foo);
|
||
|
|
}
|
||
|
|
public static void main (String[] arg)
|
||
|
|
{
|
||
|
|
System.out.println ("Testing class `private_indirect_write'...");
|
||
|
|
new private_indirect_write().foo ();
|
||
|
|
}
|
||
|
|
}
|