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

4 lines
84 B
Kotlin
Vendored

open class C<T : C<T>>
class TestOK : C<TestOK>()
class TestFail : C<C<TestFail>>()