blob: 00f981cc2acb370c36fb777286595ed64bf35ed7 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 6224167
* @summary misleading error message when both array and varargs
* methods are defined
* @compile/fail/ref=T6224167.out -XDrawDiagnostics T6224167.java
*/
class T6224167
{
void printf(String s, Object[] args) { }
void printf(String s, Object... args) { }
}