blob: 4b14c8ae1cb931344fd921debdeb688f3f69348f [file]
// RUN_PIPELINE_TILL: BACKEND
// ISSUE: KT-79430
class Foo {
fun bar() {}
}
interface Extension<T> {
fun T.bar()
}
class FooExtension : Extension<Foo> {
override fun Foo.<!EXTENSION_SHADOWED_BY_MEMBER!>bar<!>() {}
}
/* GENERATED_FIR_TAGS: classDeclaration, funWithExtensionReceiver, functionDeclaration, interfaceDeclaration,
nullableType, override, typeParameter */