blob: 74a3ea7124f7003cee5fac30207e2afdc458984f [file] [log] [blame]
internal class C(p: Int, c: C) {
var p: Int = 0
init {
c.p = p
}
}