blob: 0283dfbd25b3c8b6130e38b652700d8f701ac8d4 [file]
// RUN_PIPELINE_TILL: FRONTEND
typealias MyTypeAlias = org.jetbrains.kotlin.plugin.sandbox.AllOpen
@MyTypeAlias
annotation class MyAnno
@MyAnno
class A {
fun foo() {
}
}
@MyAnno
class B : A() {
<!OVERRIDING_FINAL_MEMBER!>override<!> fun foo() {
}
}
/* GENERATED_FIR_TAGS: annotationDeclaration, classDeclaration, functionDeclaration, override, typeAliasDeclaration */