plusplus.java: New file.
* libjava.compile/plusplus.java: New file. From MoT <Sebastien.Villemot@ens.fr>. From-SVN: r26310
This commit is contained in:
parent
9d22998936
commit
a08c72fe45
3 changed files with 21 additions and 0 deletions
|
@ -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>
|
1999-04-06 Tom Tromey <tromey@cygnus.com>
|
||||||
|
|
||||||
* libjava.mauve/mauve.exp (test_mauve_sim): Reference
|
* libjava.mauve/mauve.exp (test_mauve_sim): Reference
|
||||||
|
|
|
@ -71,17 +71,22 @@ COMPPATH = @COMPPATH@
|
||||||
CPP = @CPP@
|
CPP = @CPP@
|
||||||
CXX = @CXX@
|
CXX = @CXX@
|
||||||
CXXCPP = @CXXCPP@
|
CXXCPP = @CXXCPP@
|
||||||
|
DLLTOOL = @DLLTOOL@
|
||||||
EH_COMMON_INCLUDE = @EH_COMMON_INCLUDE@
|
EH_COMMON_INCLUDE = @EH_COMMON_INCLUDE@
|
||||||
EXEEXT = @EXEEXT@
|
EXEEXT = @EXEEXT@
|
||||||
GCDEPS = @GCDEPS@
|
GCDEPS = @GCDEPS@
|
||||||
GCINCS = @GCINCS@
|
GCINCS = @GCINCS@
|
||||||
GCLIBS = @GCLIBS@
|
GCLIBS = @GCLIBS@
|
||||||
GCOBJS = @GCOBJS@
|
GCOBJS = @GCOBJS@
|
||||||
|
LD = @LD@
|
||||||
LIBGCJ_CFLAGS = @LIBGCJ_CFLAGS@
|
LIBGCJ_CFLAGS = @LIBGCJ_CFLAGS@
|
||||||
LIBGCJ_CXXFLAGS = @LIBGCJ_CXXFLAGS@
|
LIBGCJ_CXXFLAGS = @LIBGCJ_CXXFLAGS@
|
||||||
LIBGCJ_JAVAFLAGS = @LIBGCJ_JAVAFLAGS@
|
LIBGCJ_JAVAFLAGS = @LIBGCJ_JAVAFLAGS@
|
||||||
|
LIBTOOL = @LIBTOOL@
|
||||||
|
LN_S = @LN_S@
|
||||||
MAINT = @MAINT@
|
MAINT = @MAINT@
|
||||||
MAKEINFO = @MAKEINFO@
|
MAKEINFO = @MAKEINFO@
|
||||||
|
NM = @NM@
|
||||||
PACKAGE = @PACKAGE@
|
PACKAGE = @PACKAGE@
|
||||||
PERL = @PERL@
|
PERL = @PERL@
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
|
@ -229,6 +234,7 @@ clean-am: clean-generic mostlyclean-am
|
||||||
clean: clean-am
|
clean: clean-am
|
||||||
|
|
||||||
distclean-am: distclean-generic clean-am
|
distclean-am: distclean-generic clean-am
|
||||||
|
-rm -f libtool
|
||||||
|
|
||||||
distclean: distclean-am
|
distclean: distclean-am
|
||||||
|
|
||||||
|
|
10
libjava/testsuite/libjava.compile/plusplus.java
Normal file
10
libjava/testsuite/libjava.compile/plusplus.java
Normal 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]++;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue