Files
kotlin-fork/idea/testData/inspectionsLocal/convertSealedSubClassToObject/nonEmptyConstructor.kt
T

5 lines
93 B
Kotlin
Vendored

// PROBLEM: none
sealed class Sealed(val y: Int)
<caret>class SubSealed(x: Int) : Sealed(x)