mirror of
https://github.com/openRuyi-Project/gcc.git
synced 2026-06-16 08:25:51 +00:00
a08c72fe45
* libjava.compile/plusplus.java: New file. From MoT <Sebastien.Villemot@ens.fr>. From-SVN: r26310
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]++;
|
|
}
|
|
}
|