2007-12-01 00:00:00 +00:00

18 lines
406 B
Java

/*
* @test /nodynamiccopyright/
* @bug 6177732
* @summary add hidden option to have compiler generate diagnostics in more machine-readable form
* @compile/ref=Warning.out -XDrawDiagnostics -XDstdout -Xlint:unchecked Warning.java
*/
import java.util.HashSet;
import java.util.Set;
class Warning
{
static void useUnchecked() {
Set s = new HashSet<String>();
s.add("abc");
}
}