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