10 lines
184 B
Kotlin
10 lines
184 B
Kotlin
class M<in K, out V>
|
|
class X
|
|
|
|
val p: M<X, X> = throw Exception()
|
|
|
|
// method: namespace::getP
|
|
// jvm signature: ()LM;
|
|
// generic signature: ()LM<LX;LX;>;
|
|
// kotlin signature: null
|