Files
kotlin/compiler/testData/loadJava/compiledKotlin/class/SealedClass.kt
2019-10-17 16:20:59 +03:00

9 lines
147 B
Kotlin
Vendored

package test
class Inheritor3 : SealedClass()
sealed class SealedClass {
class Inheritor1 : SealedClass()
}
class Inheritor2 : SealedClass()