mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
9 lines
178 B
Java
Vendored
9 lines
178 B
Java
Vendored
package test;
|
|
|
|
class EnumAutoGeneratedMethods {
|
|
void foo() {
|
|
TestEnum[] vals = TestEnum.values();
|
|
assert TestEnum.valueOf("first") == TestEnum.first;
|
|
}
|
|
}
|