mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-08 15:52:05 +00:00
One of them with KClass<*> parameters and other with java.lang.Class<*>. It's needed just for backward compatibility, and second one is deprecared.
16 lines
565 B
Plaintext
16 lines
565 B
Plaintext
package test
|
|
|
|
public open class ClassObjectInParam {
|
|
public constructor ClassObjectInParam()
|
|
|
|
public final annotation class Anno : kotlin.Annotation {
|
|
public /*synthesized*/ constructor Anno(/*0*/ value: java.lang.Class<*>)
|
|
public constructor Anno(/*0*/ value: kotlin.reflect.KClass<*>)
|
|
public abstract fun value(): kotlin.reflect.KClass<*>
|
|
}
|
|
|
|
test.ClassObjectInParam.Anno(value = test.ClassObjectInParam.class: java.lang.Class<test.ClassObjectInParam>) public open class Nested {
|
|
public constructor Nested()
|
|
}
|
|
}
|