mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
9 lines
170 B
Kotlin
9 lines
170 B
Kotlin
class In<in T>
|
|
class Out<out T>
|
|
class X
|
|
|
|
fun f(p: Out<In<X>>) {}
|
|
|
|
// method: _DefaultPackage::f
|
|
// jvm signature: (LOut;)V
|
|
// generic signature: (LOut<+LIn<-LX;>;>;)V |