mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
11 lines
227 B
Java
11 lines
227 B
Java
|
|
// Test from MoT <Sebastien.Villemot@ens.fr>.
|
||
|
|
|
||
|
|
class plusplus {
|
||
|
|
public static void main(String[] args)
|
||
|
|
{
|
||
|
|
int n = 5;
|
||
|
|
int[] gnu = new int[10];
|
||
|
|
gnu[n]++;
|
||
|
|
}
|
||
|
|
}
|