mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
5 lines
89 B
Kotlin
Vendored
5 lines
89 B
Kotlin
Vendored
sealed data class My(val x: Int) {
|
|
object Your: My(1)
|
|
class His(y: Int): My(y)
|
|
}
|