plusplus.java: New file.

* libjava.compile/plusplus.java: New file.
	From MoT <Sebastien.Villemot@ens.fr>.

From-SVN: r26310
This commit is contained in:
Tom Tromey 1999-04-09 10:45:10 +00:00 committed by Tom Tromey
parent 9d22998936
commit a08c72fe45
3 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,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]++;
}
}