Files
kotlin-fork/compiler/testData/diagnostics/tests/resolve/invoke/kt51793.kt
T
Denis.Zharkov 69a6339935 K2: Add test for obsolete KT-51793
^KT-51793 Fixed
2023-06-07 14:49:22 +00:00

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()
}
}