Files
kotlin-fork/nj2k/testData/newJ2k/constructors/fieldsInitializedFromParams4.kt
T
2019-04-03 11:24:19 +03:00

7 lines
82 B
Kotlin
Vendored

internal class C(p: Int, c: C) {
var p = 0
init {
c.p = p
}
}