Files
kotlin-fork/idea/resources/intentionDescriptions/ConvertEnumToSealedClassIntention/before.kt.template
T
2016-10-13 19:00:56 +03:00

8 lines
105 B
Plaintext

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