69559689fd
^KT-63042
13 lines
328 B
Kotlin
Vendored
13 lines
328 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
@Target(AnnotationTarget.TYPE)
|
|
annotation class Anno(val str: String)
|
|
|
|
const val prop = "str"
|
|
fun foo() {
|
|
class Local {
|
|
fun foo() = bar()
|
|
fun bar(): @Anno("bar $prop") List<@Anno("nested bar $prop") Collection<@Anno("nested nested bar $prop") Int>>? = null
|
|
fun baz() = bar()
|
|
}
|
|
}
|