langtools/test/tools/javac/T6394563.java
author mikejwre
Wed, 09 Jun 2010 18:56:41 -0700
changeset 5634 895b66935810
parent 10 06bc494ca11e
child 6150 d055fa8ced62
permissions -rw-r--r--
Merge
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
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * @compile/ref=T6394563.note.out  -XDstdout -XDrawDiagnostics -nowarn             T6394563.java
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 * @compile/ref=T6394563.note.out  -XDstdout -XDrawDiagnostics -nowarn -source 1.5 T6394563.java
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * @compile/ref=T6394563.empty.out -XDstdout -XDrawDiagnostics -nowarn -source 1.4 T6394563.java
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 * @compile/ref=T6394563.warn.out  -XDstdout -XDrawDiagnostics -Xlint -nowarn             T6394563.java
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * @compile/ref=T6394563.warn.out  -XDstdout -XDrawDiagnostics -Xlint -nowarn -source 1.5 T6394563.java
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * @compile/ref=T6394563.empty.out -XDstdout -XDrawDiagnostics -Xlint -nowarn -source 1.4 T6394563.java
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
}