Files
kotlin/compiler/testData/loadJava/compiledKotlin/class/RecursiveGeneric.txt
2015-09-08 02:04:32 +03:00

10 lines
202 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<*, *>
}