* libjava.compile/weirddecl.java: New file.

From-SVN: r37767
This commit is contained in:
Tom Tromey 2000-11-26 23:24:21 +00:00 committed by Tom Tromey
parent 6b5f6edaf9
commit 187d3a0d37
3 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2000-11-26 Tom Tromey <tromey@cygnus.com>
* libjava.compile/weirddecl.java: New file.
Fri Nov 24 11:25:20 2000 Anthony Green <green@redhat.com>
* lib/libjava.exp (bytecompile_file): Change default from javac to

View File

@ -88,6 +88,7 @@ GCTESTSPEC = @GCTESTSPEC@
INCLTDL = @INCLTDL@
JC1GCSPEC = @JC1GCSPEC@
LIBDATASTARTSPEC = @LIBDATASTARTSPEC@
LIBGCJDEBUG = @LIBGCJDEBUG@
LIBGCJTESTSPEC = @LIBGCJTESTSPEC@
LIBGCJ_CFLAGS = @LIBGCJ_CFLAGS@
LIBGCJ_CXXFLAGS = @LIBGCJ_CXXFLAGS@

View File

@ -0,0 +1,8 @@
public class weirddecl
{
// Weird but legal decl.
public String foo (String[] dumb[])
{
return dumb[0][0];
}
}