69a6339935
^KT-51793 Fixed
18 lines
230 B
Kotlin
Vendored
18 lines
230 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// ISSUE: KT-51793
|
|
interface Key
|
|
|
|
interface Builder {
|
|
operator fun Key.invoke()
|
|
}
|
|
|
|
interface A : Builder
|
|
interface B : Builder
|
|
|
|
val A.k: Key get() = TODO()
|
|
|
|
fun A.main() {
|
|
fun B.bar() {
|
|
k()
|
|
}
|
|
} |