DEBSOURCES
Skip Quicknav
sources / kotlin / 1.3.31%2Bds1-3 / idea / resources / intentionDescriptions / ConvertEnumToSealedClassIntention / after.kt.template
123456789
sealed class MyEnum(val s: String = "") { fun foo() { } object FOO : MyEnum("FOO") object BAR : MyEnum("BAR") object DEFAULT : MyEnum() }