Files
2023-10-19 16:24:32 +00:00

7 lines
162 B
Kotlin
Vendored

@Target(AnnotationTarget.TYPE)
annotation class Anno(val s: String)
interface One
interface Two
fun <T> f<caret>oo(t: T) where T : One, T : @Anno("str") Two = t