Files
kotlin-fork/compiler/testData/diagnostics/tests/generics/starProjections/checkBounds.kt
T
2016-01-29 14:36:53 +03:00

3 lines
59 B
Kotlin
Vendored

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