mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
9 lines
105 B
Kotlin
Vendored
9 lines
105 B
Kotlin
Vendored
abstract class Base
|
|
|
|
object Test : Base() {
|
|
val x = 1
|
|
val y: Int
|
|
init {
|
|
y = x
|
|
}
|
|
} |