// Check if a method name is mangled properly in the presence// of an array parameter sharing a part of the type name // with a subsequent parameter.public class PR9577
{private native voidsayHello(String[] s, Object o);public static voidmain(String[] args){
PR9577 x =newPR9577( );
x.sayHello(null,null);}}