a9ddc4da1a
#KT-8744 Fixed
5 lines
86 B
Kotlin
Vendored
5 lines
86 B
Kotlin
Vendored
interface A {
|
|
val parent: A?
|
|
}
|
|
|
|
fun A.<caret>ext(): Int = 1 + (parent?.ext() ?: 0) |