mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
14 lines
168 B
Kotlin
Vendored
14 lines
168 B
Kotlin
Vendored
class TestInitValFromParameter(val x: Int)
|
|
|
|
class TestInitValInClass {
|
|
val x = 0
|
|
}
|
|
|
|
class TestInitValInInitBlock {
|
|
val x: Int
|
|
init {
|
|
x = 0
|
|
}
|
|
}
|
|
|