langtools/test/tools/javac/rawDiags/Warning.java
author ksrini
Fri, 18 Feb 2011 08:12:06 -0800
changeset 8432 d3380b1e4779
parent 6150 d055fa8ced62
permissions -rw-r--r--
7018859: javac turn off the Zip optimization by default Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
06bc494ca11e Initial load
duke
parents:
diff changeset
     2
 * @test  /nodynamiccopyright/
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * @bug 6177732
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 * @summary add hidden option to have compiler generate diagnostics in more machine-readable form
6150
d055fa8ced62 6971882: Remove -XDstdout from javac test
jjg
parents: 10
diff changeset
     5
 * @compile/ref=Warning.out -XDrawDiagnostics -Xlint:unchecked Warning.java
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
import java.util.HashSet;
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
import java.util.Set;
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
class Warning
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
{
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
    static void useUnchecked() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
        Set s = new HashSet<String>();
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
        s.add("abc");
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
}