mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
10 lines
202 B
Plaintext
Vendored
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<*, *>
|
|
}
|