Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libjava / testsuite / libjava.compile / rh174912.java
blob65c1bf574ab3126a288036a0e11bf4957b67119b
1 // Derived from Red Hat bugzilla 174912
2 // https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=174912
3 // The bug is that the anonymous class constructor here will end up
4 // with a bogus '[3C' in its signature.
6 public class rh174912 {
7 public rh174912(char[][] args) { }
9 public Object m() {
10 return new rh174912(new char[][] { "hi".toCharArray(),
11 "bob".toCharArray(),
12 "and joe".toCharArray() }) {
16 public static void main(String[] args) { }