* 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

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