mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
Use the code from PsiClassImpl / ClsClassImpl, which for some reason is absent in AbstractLightClass #KT-5591 Fixed
9 lines
160 B
Java
9 lines
160 B
Java
package test;
|
|
|
|
class EnumAutoGeneratedMethods {
|
|
void foo() {
|
|
TestEnum.values();
|
|
assert TestEnum.valueOf("first") == TestEnum.first;
|
|
}
|
|
}
|