Files
kotlin/compiler/testData/loadJava/compiledKotlin/class/RecursiveGeneric.txt

10 lines
210 B
Plaintext
Vendored

package test
internal interface Rec</*0*/ R, /*1*/ out T : test.Rec<R, T>> {
internal abstract fun t(): T
}
internal interface Super {
internal open fun foo(/*0*/ p: test.Rec<*, *>): test.Rec<*, *>
}