Intentions: Implement "Convert enum to sealed class" intention

#KT-14245 In Progress
This commit is contained in:
Alexey Sedunov
2016-10-10 19:33:56 +03:00
parent 02e8d58acd
commit 2187a77646
18 changed files with 252 additions and 0 deletions
@@ -0,0 +1,9 @@
// WITH_RUNTIME
enum class <caret>MyEnum(val s: String = "") {
;
fun foo() {
}
}