mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
7 lines
167 B
Kotlin
Vendored
7 lines
167 B
Kotlin
Vendored
// "Create header class implementation for platform JS" "true"
|
|
|
|
header sealed class <caret>Sealed {
|
|
object Obj : Sealed()
|
|
|
|
class Klass(val x: Int) : Sealed()
|
|
} |