Files
kotlin/compiler/testData/loadJava/compiledKotlin/class/RecursiveGeneric.kt
2015-05-12 19:43:17 +02:00

10 lines
141 B
Kotlin
Vendored

//ALLOW_AST_ACCESS
package test
interface Rec<R, out T: Rec<R, T>> {
fun t(): T
}
interface Super {
fun foo(p: Rec<*, *>) = p.t()
}