langtools/test/tools/javac/rawDiags/Warning.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 10 06bc494ca11e
child 6150 d055fa8ced62
permissions -rw-r--r--
Initial load
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
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * @compile/ref=Warning.out -XDrawDiagnostics -XDstdout -Xlint:unchecked Warning.java
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
}