blob: 5777865d71c28a797c1cdc66d60ecac967716ad4 [file]
// RUN_PIPELINE_TILL: BACKEND
import org.jetbrains.kotlin.plugin.sandbox.CompanionWithFoo
@CompanionWithFoo
class SomeClass
fun takeInt(x: Int) {}
fun test() {
takeInt(SomeClass.foo())
takeInt(SomeClass.Companion.foo())
}
/* GENERATED_FIR_TAGS: classDeclaration, functionDeclaration */