12 lines
218 B
Kotlin
12 lines
218 B
Kotlin
class C() {
|
|
|
|
constructor(p: Int) : this() {
|
|
System.out.println(staticField1 + C.staticField2)
|
|
}
|
|
|
|
companion object {
|
|
private val staticField1 = 0
|
|
private val staticField2 = 0
|
|
}
|
|
}
|