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

7 lines
71 B
Kotlin
Vendored

interface IFoo {
fun foo()
}
fun outer() {
fun IFoo.foo() {}
}