mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-20 20:09:35 +08:00
9 lines
123 B
Java
9 lines
123 B
Java
|
public class weirddecl
|
||
|
{
|
||
|
// Weird but legal decl.
|
||
|
public String foo (String[] dumb[])
|
||
|
{
|
||
|
return dumb[0][0];
|
||
|
}
|
||
|
}
|