Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/class/RecursiveGeneric.txt
T
2019-06-03 12:13:31 +03:00

10 lines
334 B
Plaintext
Vendored

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