OSDN Git Service

* libjava.compile/plusplus.java: New file.
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 9 Apr 1999 10:45:10 +0000 (10:45 +0000)
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 9 Apr 1999 10:45:10 +0000 (10:45 +0000)
From MoT <Sebastien.Villemot@ens.fr>.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26310 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/testsuite/ChangeLog
libjava/testsuite/Makefile.in
libjava/testsuite/libjava.compile/plusplus.java [new file with mode: 0644]

index d7559a2..2c51ec8 100644 (file)
@@ -1,3 +1,8 @@
+1999-04-09  Tom Tromey  <tromey@cygnus.com>
+
+       * libjava.compile/plusplus.java: New file.
+       From MoT <Sebastien.Villemot@ens.fr>.
+
 1999-04-06  Tom Tromey  <tromey@cygnus.com>
 
        * libjava.mauve/mauve.exp (test_mauve_sim): Reference
index 764c148..ce37a4d 100644 (file)
@@ -71,17 +71,22 @@ COMPPATH = @COMPPATH@
 CPP = @CPP@
 CXX = @CXX@
 CXXCPP = @CXXCPP@
+DLLTOOL = @DLLTOOL@
 EH_COMMON_INCLUDE = @EH_COMMON_INCLUDE@
 EXEEXT = @EXEEXT@
 GCDEPS = @GCDEPS@
 GCINCS = @GCINCS@
 GCLIBS = @GCLIBS@
 GCOBJS = @GCOBJS@
+LD = @LD@
 LIBGCJ_CFLAGS = @LIBGCJ_CFLAGS@
 LIBGCJ_CXXFLAGS = @LIBGCJ_CXXFLAGS@
 LIBGCJ_JAVAFLAGS = @LIBGCJ_JAVAFLAGS@
+LIBTOOL = @LIBTOOL@
+LN_S = @LN_S@
 MAINT = @MAINT@
 MAKEINFO = @MAKEINFO@
+NM = @NM@
 PACKAGE = @PACKAGE@
 PERL = @PERL@
 RANLIB = @RANLIB@
@@ -229,6 +234,7 @@ clean-am:  clean-generic mostlyclean-am
 clean: clean-am
 
 distclean-am:  distclean-generic clean-am
+       -rm -f libtool
 
 distclean: distclean-am
 
diff --git a/libjava/testsuite/libjava.compile/plusplus.java b/libjava/testsuite/libjava.compile/plusplus.java
new file mode 100644 (file)
index 0000000..b8e9bd9
--- /dev/null
@@ -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]++;
+        }
+}