8af6ca5279
It was supposed to be used in reflection but the benefits do not outweigh the cost of KT-6951 #KT-3223 Fixed #KT-6951 Fixed
8 lines
235 B
Kotlin
8 lines
235 B
Kotlin
|
|
trait Base<A, in B, out C>
|
|
class Derived<A, B, C>: Base<A, B, C>
|
|
|
|
// class: Derived
|
|
// jvm signature: Derived
|
|
// generic signature: <A:Ljava/lang/Object;B:Ljava/lang/Object;C:Ljava/lang/Object;>Ljava/lang/Object;LBase<TA;TB;TC;>;
|