blob: 98ced8a5b3b8830ac72e720c10b1cd5913882ec1 [file] [log] [blame]
enum class TestEnum {
A, B;
companion object {
fun parse(): TestEnum {
return A
}
}
}
internal class Go {
fun fn() {
val x = TestEnum.parse()
}
}