| // 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 */ |