IDEA-125900 (resolve of synthetic enum methods in class files fixed)

This commit is contained in:
Roman Shevchenko
2014-06-05 13:18:03 +04:00
parent bb35b2626c
commit 6396cd8927
6 changed files with 76 additions and 64 deletions
@@ -0,0 +1,8 @@
import java.lang.annotation.ElementType;
class EnumSynthetics {
void m() {
//ElementType[] values = ElementType.values();
ElementType type = ElementType.valueOf("TYPE");
}
}