35567d453b
^KT-62691
7 lines
162 B
Kotlin
Vendored
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 |