1 // Check if a method name is mangled properly in the presence
2 // of an array parameter sharing a part of the type name
3 // with a subsequent parameter.
7 private native void sayHello (String
[] s
, Object o
);
9 public static void main (String
[] args
)
11 PR9577 x
= new PR9577( );
12 x
.sayHello( null, null);