langtools/test/tools/javac/rawDiags/Warning.java
author jjg
Mon, 26 Jul 2010 14:18:45 -0700
changeset 6150 d055fa8ced62
parent 10 06bc494ca11e
permissions -rw-r--r--
6971882: Remove -XDstdout from javac test Reviewed-by: darcy
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
}