10 lines
224 B
Kotlin
Vendored
10 lines
224 B
Kotlin
Vendored
internal class C() {
|
|
constructor(p: Int) : this() {
|
|
println(staticField1 + staticField2)
|
|
}
|
|
|
|
companion object {
|
|
private const val staticField1 = 0
|
|
private const val staticField2 = 0
|
|
}
|
|
} |