Files
kotlin-fork/idea/testData/inspectionsLocal/convertSealedSubClassToObject/ownState.kt
T
2018-06-13 18:12:18 +03:00

8 lines
127 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
sealed class SC {
<caret>class U : SC() {
val a = mutableListOf<String>()
}
}