| // RUN_PIPELINE_TILL: BACKEND | |
| // FIR_IDENTICAL | |
| // ISSUE: KT-63741 | |
| interface AreaInstance { | |
| fun getExtensionArea(): Int | |
| } | |
| interface ComponentManager : AreaInstance { | |
| override fun getExtensionArea() = 10 | |
| } | |
| interface Project : ComponentManager, AreaInstance | |
| class MockProject : ComponentManager, Project | |
| /* GENERATED_FIR_TAGS: classDeclaration, functionDeclaration, integerLiteral, interfaceDeclaration, override */ |