Files
kotlin-fork/compiler/testData/diagnostics/tests/redeclarations/shadowedExtension/memberExtensionShadowedByMember.fir.kt
T

9 lines
129 B
Kotlin
Vendored

interface IFooBar {
fun foo()
val bar: Int
}
class Host {
fun IFooBar.foo() {}
val IFooBar.bar: Int get() = 42
}