blob: a59df497b09aefc0f5e3101d3d536d1514883054 [file] [log] [blame]
interface A {
val parent: A
}
fun ext(a: A): Int = 1 + ext(a.parent)