mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
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
224 B
Kotlin
Vendored
8 lines
224 B
Kotlin
Vendored
|
|
open class 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;>LBase<TA;TB;TC;>;
|