Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/class/SealedInterface.kt
T
2024-01-05 15:55:29 +00:00

10 lines
162 B
Kotlin
Vendored

package test
class Inheritor3 : SealedInterface
sealed interface SealedInterface {
class Inheritor1 : SealedInterface
}
class Inheritor2 : SealedInterface