blob: 486d6bf375a5c4dc69fdd81ea7aa483e5be3d010 [file] [log] [blame]
package test8;
public class CCTest8ii {
public static void main(String[] args) {
InnerEnum e; //Check that InnerEnum is in the CC
}
private static enum InnerEnum {
A, B, C
}
}