langtools/test/tools/javac/T6394563.java
author juh
Tue, 25 Jun 2013 14:31:29 -0700
changeset 18551 882a3948c6e6
parent 6150 d055fa8ced62
child 22444 c79ee1e6742f
permissions -rw-r--r--
8017325: Cleanup of the javadoc <code> tag in java.security.cert Summary: Convert javadoc <code>...</code> and <tt>...</tt> tags to {@code ...} 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 6394563
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 * @summary javac ignores -nowarn switch in 1.5.0_06 for deprecation warnings
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 *
6150
d055fa8ced62 6971882: Remove -XDstdout from javac test
jjg
parents: 10
diff changeset
     6
 * @compile/ref=T6394563.note.out  -XDrawDiagnostics -nowarn             T6394563.java
d055fa8ced62 6971882: Remove -XDstdout from javac test
jjg
parents: 10
diff changeset
     7
 * @compile/ref=T6394563.note.out  -XDrawDiagnostics -nowarn -source 1.5 T6394563.java
d055fa8ced62 6971882: Remove -XDstdout from javac test
jjg
parents: 10
diff changeset
     8
 * @compile/ref=T6394563.empty.out -XDrawDiagnostics -nowarn -source 1.4 T6394563.java
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
 *
6150
d055fa8ced62 6971882: Remove -XDstdout from javac test
jjg
parents: 10
diff changeset
    10
 * @compile/ref=T6394563.warn.out  -XDrawDiagnostics -Xlint -nowarn             T6394563.java
d055fa8ced62 6971882: Remove -XDstdout from javac test
jjg
parents: 10
diff changeset
    11
 * @compile/ref=T6394563.warn.out  -XDrawDiagnostics -Xlint -nowarn -source 1.5 T6394563.java
d055fa8ced62 6971882: Remove -XDstdout from javac test
jjg
parents: 10
diff changeset
    12
 * @compile/ref=T6394563.empty.out -XDrawDiagnostics -Xlint -nowarn -source 1.4 T6394563.java
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
class T6394563 {
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
    void useDeprecated() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
        deprecated.foo();
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
}
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
06bc494ca11e Initial load
duke
parents:
diff changeset
    21
class deprecated {
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
    /** @deprecated */ static void foo() { }
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
}