blob: 509fa57135ffedfd3fc0c43ce9a47bb1c51474d8 [file]
// RUN_PIPELINE_TILL: BACKEND
import kotlin.jvm.*
external fun foo()
class C {
external fun foo()
companion object {
external fun foo()
}
}
object O {
external fun foo()
}
fun test() {
class Local {
external fun foo()
}
object {
external fun foo()
}
}
/* GENERATED_FIR_TAGS: anonymousObjectExpression, classDeclaration, companionObject, external, functionDeclaration,
localClass, objectDeclaration */