mirror of
https://forge.sourceware.org/marek/gcc.git
synced 2026-02-23 04:09:53 -05: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];
|
|
}
|
|
}
|