mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 08:31:30 +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.
17 lines
800 B
Plaintext
17 lines
800 B
Plaintext
package test
|
|
|
|
public open class ClassObjectInParamRaw {
|
|
public constructor ClassObjectInParamRaw()
|
|
|
|
public final annotation class Anno : kotlin.Annotation {
|
|
public /*synthesized*/ constructor Anno(/*0*/ value: java.lang.Class<*>, /*1*/ arg: kotlin.Array<java.lang.Class<*>>)
|
|
public constructor Anno(/*0*/ value: kotlin.reflect.KClass<*>, /*1*/ arg: kotlin.Array<kotlin.reflect.KClass<*>>)
|
|
public abstract fun arg(): kotlin.Array<kotlin.reflect.KClass<*>>
|
|
public abstract fun value(): kotlin.reflect.KClass<*>
|
|
}
|
|
|
|
test.ClassObjectInParamRaw.Anno(arg = {}: kotlin.Array<kotlin.reflect.KClass<*>>, value = test.ClassObjectInParamRaw.class: java.lang.Class<test.ClassObjectInParamRaw>) public open class Nested {
|
|
public constructor Nested()
|
|
}
|
|
}
|