blob: 6b48526d3b327878d2dcbdf6e3979780acb5e671 [file]
// LL_FIR_DIVERGENCE
// KT-75685: LLFirIdePredicateBasedProvider collects all owners lazily and independently from the compiler required annotations phase
// LL_FIR_DIVERGENCE
// RUN_PIPELINE_TILL: FRONTEND
typealias MyTypeAlias = org.jetbrains.kotlin.plugin.sandbox.AllOpen
@MyTypeAlias
class A {
fun foo() {
}
}
@MyTypeAlias
class B : A() {
override fun foo() {
}
}
/* GENERATED_FIR_TAGS: classDeclaration, functionDeclaration, override, typeAliasDeclaration */