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