blob: fa25bbff5ab42a3ead384b3e6e7063848e303787 [file] [log] [blame]
import java.lang.annotation.ElementType;
class EnumSynthetics {
void m() {
//ElementType[] values = ElementType.values();
ElementType type = ElementType.valueOf("TYPE");
}
}