1 2 3 4 5 6 7 8 9 10
// 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]++; } }