mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
Don't use JetObject as a marker class in KotlinRuntimeLibraryUtil anymore, since there are other classes for this purpose (KotlinPackage, Unit)
8 lines
253 B
Kotlin
8 lines
253 B
Kotlin
|
|
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;>;Lkotlin/jvm/internal/KObject;
|