blob: ef948d057036f201de56cd5e837b3306dcff9a8e [file]
package test8;
public class CCTest8 {
public static void main(String[] args) {
InnerEnum e; //Check that InnerEnum is in the CC
e = InnerEnum.A; //Check the CC provided after the dot
InnerEnum x = e.A; //Check the CC provided after the dot
}
private static enum InnerEnum {
A, B, C
}
}