0df5d5158d
#KT-38297 Fixed
8 lines
105 B
Plaintext
8 lines
105 B
Plaintext
enum class MyEnum(val s: String = "") {
|
|
FOO("FOO"), BAR("BAR"), DEFAULT();
|
|
|
|
fun foo() {
|
|
|
|
}
|
|
}
|