Files
kotlin-fork/nj2k/testData/newJ2k/constructors/staticFieldRefInFactoryFun.kt
T
2019-09-29 11:39:36 +03:00

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
}
}