Better function header dump
[official-gcc.git] / libjava / testsuite / libjava.cni / PR9577.java
blob26973924333886c2206f230a94d3a6c611f1ce54
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.
5 public class PR9577
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);