mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
10 lines
210 B
Plaintext
10 lines
210 B
Plaintext
package test
|
|
|
|
internal interface Rec</*0*/ R, /*1*/ out T : test.Rec<R, T>> {
|
|
internal abstract fun t(): T
|
|
}
|
|
|
|
internal interface Super {
|
|
internal open fun foo(/*0*/ p: test.Rec<*, *>): test.Rec<*, *>
|
|
}
|