Files
kotlin-fork/compiler/testData/diagnostics/tests/generics/starProjections/checkBounds.fir.kt
T

3 lines
59 B
Kotlin
Vendored

class A<T : A<T>>
fun <T : A<*>> foo() {}
class B<T : A<*>>