blob: 0d9fa7984b66744159a7a55faeb2409e44d60756 [file]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
import kotlin.jvm.*
interface Base {
fun foo()
}
class Derived : Base {
override external fun foo()
}
/* GENERATED_FIR_TAGS: classDeclaration, external, functionDeclaration, interfaceDeclaration, override */