diff options
Diffstat (limited to 'libjava/testsuite/libjava.cni/PR9577.java')
-rw-r--r-- | libjava/testsuite/libjava.cni/PR9577.java | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libjava/testsuite/libjava.cni/PR9577.java b/libjava/testsuite/libjava.cni/PR9577.java deleted file mode 100644 index 2697392..0000000 --- a/libjava/testsuite/libjava.cni/PR9577.java +++ /dev/null @@ -1,14 +0,0 @@ -// 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 void sayHello (String[] s, Object o); - - public static void main (String[] args) - { - PR9577 x = new PR9577( ); - x.sayHello( null, null); - } -} |