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