mirror of
https://github.com/openjdk/jdk.git
synced 2026-01-28 12:09:14 +00:00
21 lines
410 B
Java
21 lines
410 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 5024518
|
|
* @summary need warning if varargs argument isn't boxed
|
|
* @author gafter
|
|
*
|
|
* @compile Warn1.java
|
|
* @compile/ref=Warn1.out -XDrawDiagnostics Warn1.java
|
|
* @compile -Werror -nowarn Warn1.java
|
|
*/
|
|
|
|
package varargs.warn1;
|
|
|
|
class T {
|
|
static void f(String fmt, Object... args) {}
|
|
|
|
public static void main(String[] args) {
|
|
f("foo", args);
|
|
}
|
|
}
|