test/tools/javac/T6394563.java

Mon, 23 Sep 2013 10:42:38 +0200

author
alundblad
date
Mon, 23 Sep 2013 10:42:38 +0200
changeset 2047
5f915a0c9615
parent 611
4172cfff05f0
child 2525
2eb010b6cb22
permissions
-rw-r--r--

6386236: Please rename com.sun.tools.javac.util.ListBuffer.lb()
Summary: Static factory method ListBuffer.lb removed. Replaced by constructor calls.
Reviewed-by: jfranck, jjg

     1 /*
     2  * @test  /nodynamiccopyright/
     3  * @bug 6394563
     4  * @summary javac ignores -nowarn switch in 1.5.0_06 for deprecation warnings
     5  *
     6  * @compile/ref=T6394563.note.out  -XDrawDiagnostics -nowarn             T6394563.java
     7  * @compile/ref=T6394563.note.out  -XDrawDiagnostics -nowarn -source 1.5 T6394563.java
     8  * @compile/ref=T6394563.empty.out -XDrawDiagnostics -nowarn -source 1.4 T6394563.java
     9  *
    10  * @compile/ref=T6394563.warn.out  -XDrawDiagnostics -Xlint -nowarn             T6394563.java
    11  * @compile/ref=T6394563.warn.out  -XDrawDiagnostics -Xlint -nowarn -source 1.5 T6394563.java
    12  * @compile/ref=T6394563.empty.out -XDrawDiagnostics -Xlint -nowarn -source 1.4 T6394563.java
    13  */
    15 class T6394563 {
    16     void useDeprecated() {
    17         deprecated.foo();
    18     }
    19 }
    21 class deprecated {
    22     /** @deprecated */ static void foo() { }
    23 }

mercurial