langtools/test/tools/javac/T6245591.java
author jjg
Fri, 11 Jul 2008 14:59:48 -0700 (2008-07-11)
changeset 865 21668f049d28
parent 10 06bc494ca11e
child 6150 d055fa8ced62
permissions -rw-r--r--
6725036: javac returns incorrect value for lastModifiedTime() when source is a zip file archive 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 6245591
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 * @compile/ref=T6245591.out -XDstdout -XDrawDiagnostics -Xlint:all,-path T6245591.java
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
enum Season {
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
    /** @deprecated */
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
    WINTER, SPRING, SUMMER, FALL;
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
}
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
enum Season1 {
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
    WINTER, SPRING, SUMMER, FALL;
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
}
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
class T6245591 {
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
    void m() {
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
        Season s1 = Season.WINTER;    // ref to WINTER should be deprecated
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
        Season1 s2 = Season1.WINTER;  // nothing here should be deprecated;
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
                                      // @deprecated should not leak out of Season
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
}