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