blob: 35f21b2c562b234d44c6e86675dfcc1d6fdc636b [file] [log] [blame]
//ALLOW_AST_ACCESS
package test
interface Rec<R, out T: Rec<R, T>> {
fun t(): T
}
interface Super {
fun foo(p: Rec<*, *>) = p.t()
}