langtools/test/tools/javac/UseEnum.java
author lana
Thu, 21 Jan 2016 09:46:01 -0800
changeset 35340 38f7386ed942
parent 26901 2c11dc81a5c8
permissions -rw-r--r--
Added tag jdk-9+102 for changeset 7e3feb2ba5b3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
26901
2c11dc81a5c8 8055783: Group 9e: golden files for tests in tools/javac dir
sogoel
parents: 5520
diff changeset
     2
 * @test /nodynamiccopyright/
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * @bug 5013488
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 * @summary Compiler AssertionError: com.sun.tools.javac.util.Bits.incl(Bits.java:73)
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 *
26901
2c11dc81a5c8 8055783: Group 9e: golden files for tests in tools/javac dir
sogoel
parents: 5520
diff changeset
     6
 * @compile/fail/ref=UseEnum.out -XDrawDiagnostics UseEnum.java
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
import static java.lang.System.out;
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
class UseEnum {
26901
2c11dc81a5c8 8055783: Group 9e: golden files for tests in tools/javac dir
sogoel
parents: 5520
diff changeset
    12
    enum Animal {cat, dog, bird, fish};
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
    public static void main(String args[]) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
        Animal pet;
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
        pet = Animal.cat;
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
        out.println(pet);
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
        for (Animal beast : beast.values())
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
            out.println(pet);
06bc494ca11e Initial load
duke
parents:
diff changeset
    21
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
}