7 lines
87 B
Kotlin
Vendored
7 lines
87 B
Kotlin
Vendored
internal class C(p: Int, c: C) {
|
|
var p: Int = 0
|
|
|
|
init {
|
|
c.p = p
|
|
}
|
|
} |