Files
kotlin-fork/idea/resources/intentionDescriptions/ConvertSealedClassToEnumIntention/after.kt.template
T
2016-10-13 19:00:57 +03:00

7 lines
105 B
Plaintext

enum class MyClass(val s: String = "") {
FOO("FOO"), BAR("BAR"), DEFAULT();
fun foo() {
}
}