blob: bfbed622c69fc998320c8c469d8ddb4501d5f536 [file]
// RUN_PIPELINE_TILL: BACKEND
// LANGUAGE: +ContextReceivers
// ISSUE: KT-72863
@Target(AnnotationTarget.TYPE)
annotation class Anno(val position: String)
context(List<@Anno("context receiver type $prop") Int>)
fun foo() {
}
const val prop = "str"
/* GENERATED_FIR_TAGS: annotationDeclaration, const, functionDeclaration, functionDeclarationWithContext,
primaryConstructor, propertyDeclaration, stringLiteral */