mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02: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]);
|
||
|
|
}
|
||
|
|
}
|