Files
kotlin-fork/analysis/low-level-api-fir/testData/getOrBuildFir/annotations/annotationInsideWhereFunction.kt
T
2023-10-19 16:24:32 +00:00

9 lines
219 B
Kotlin
Vendored

// LOOK_UP_FOR_ELEMENT_OF_TYPE: KtAnnotationEntry
@Target(AnnotationTarget.TYPE)
annotation class Anno(val s: String)
interface One
interface Two
fun <T> foo(t: T) where T : One, T : <expr>@Anno("str")</expr> Two = t