mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
9 lines
147 B
Kotlin
Vendored
9 lines
147 B
Kotlin
Vendored
package test
|
|
|
|
class Inheritor3 : SealedClass()
|
|
|
|
sealed class SealedClass {
|
|
class Inheritor1 : SealedClass()
|
|
}
|
|
|
|
class Inheritor2 : SealedClass() |