mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
5 lines
147 B
Kotlin
Vendored
5 lines
147 B
Kotlin
Vendored
<!INCOMPATIBLE_MODIFIERS!>sealed<!> <!INCOMPATIBLE_MODIFIERS!>data<!> class My(val x: Int) {
|
|
object Your: My(1)
|
|
class His(y: Int): My(y)
|
|
}
|