langtools/test/tools/javac/rawDiags/Warning.java
author emc
Thu, 19 Dec 2013 11:38:45 -0500
changeset 22164 c8eb1ae29c58
parent 6150 d055fa8ced62
permissions -rw-r--r--
8030726: tools/javac/NoStringToLower.java fails due to enforcement no use of String.toLowerCase on non-langtools classes Summary: Fix NoStringToLower test to only enforce ban on String.toLowerCase on langtools classes Reviewed-by: vromero, jfranck Contributed-by: paul.govereau@oracle.com
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
}