1 public class weirddecl
2 {
3   // Weird but legal decl.
foo(String[] dumb[])4   public String foo (String[] dumb[])
5   {
6     return dumb[0][0];
7   }
8 }
9