Files
kotlin-fork/idea/testData/multiFileLocalInspections/convertSealedSubClassToObject/convertInOtherFiles/before/KotlinSealedTest.kt
T

13 lines
213 B
Kotlin
Vendored

import seal.*
val sealedOutsideClass = SubSealed()
class KotlinSealedTest {
val sealedInsideClass = SubSealed()
fun testSeal() {
val sealedInsideMethod = SubSealed()
SubSealed()
}
}