Files
kotlin/compiler/testData/loadJava/compiledKotlin/class/RecursiveGeneric.txt
2015-03-11 19:38:14 +03:00

10 lines
202 B
Plaintext

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