2007-12-01 00:00:00 +00:00
|
|
|
/*
|
|
|
|
* @test /nodynamiccopyright/
|
|
|
|
* @bug 6224167
|
|
|
|
* @summary misleading error message when both array and varargs
|
|
|
|
* methods are defined
|
2010-07-26 21:18:45 +00:00
|
|
|
* @compile/fail/ref=T6224167.out -XDrawDiagnostics T6224167.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
class T6224167
|
|
|
|
{
|
|
|
|
void printf(String s, Object[] args) { }
|
|
|
|
void printf(String s, Object... args) { }
|
|
|
|
}
|