blob: 65c1bf574ab3126a288036a0e11bf4957b67119b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Derived from Red Hat bugzilla 174912
// https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=174912
// The bug is that the anonymous class constructor here will end up
// with a bogus '[3C' in its signature.
public class rh174912 {
public rh174912(char[][] args) { }
public Object m() {
return new rh174912(new char[][] { "hi".toCharArray(),
"bob".toCharArray(),
"and joe".toCharArray() }) {
};
}
public static void main(String[] args) { }
}
|