mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
31 lines
574 B
Java
31 lines
574 B
Java
// Class anon4
|
|
// Generated on Wed Dec 29 10:07:09 PST 1999
|
|
//
|
|
|
|
|
|
class anon4 {
|
|
|
|
private int field = 3;
|
|
|
|
itf bar () {
|
|
return new itf () {
|
|
int count = 5;
|
|
public void setCount (int j) { count = 3+field; }
|
|
public int getCount () { return count+field; }
|
|
} ;
|
|
}
|
|
|
|
void test () {
|
|
itf x = bar ();
|
|
System.out.println (x.getCount ());
|
|
}
|
|
|
|
public static void main (String[] arg)
|
|
{
|
|
System.out.println ("Testing class `anon4'...");
|
|
new anon4 ().test ();
|
|
}
|
|
}
|
|
|
|
interface itf { void setCount (int j); int getCount(); int count = 0; }
|