author | sogoel |
Thu, 05 Jun 2014 10:57:10 -0700 | |
changeset 24797 | 850ebd4d80a7 |
parent 6150 | d055fa8ced62 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
2 |
* @test /nodynamiccopyright/ |
|
3 |
* @bug 6224167 |
|
4 |
* @summary misleading error message when both array and varargs |
|
5 |
* methods are defined |
|
6150 | 6 |
* @compile/fail/ref=T6224167.out -XDrawDiagnostics T6224167.java |
10 | 7 |
*/ |
8 |
class T6224167 |
|
9 |
{ |
|
10 |
void printf(String s, Object[] args) { } |
|
11 |
void printf(String s, Object... args) { } |
|
12 |
} |