mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
14 lines
256 B
Java
14 lines
256 B
Java
// Class anonarray3
|
|
// Generated on Tue Feb 8 19:18:10 PST 2000
|
|
//
|
|
|
|
class anonarray3 {
|
|
private static final int[] foo (int x) {
|
|
return new int[] { x+1 };
|
|
}
|
|
public static void main (String[] arg)
|
|
{
|
|
System.out.println (foo (34)[0]);
|
|
}
|
|
}
|