mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-26 00:21:32 +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
769 B
Plaintext
16 lines
769 B
Plaintext
package test
|
|
|
|
public open class ClassObjectArrayInParam {
|
|
public constructor ClassObjectArrayInParam()
|
|
|
|
public final annotation class Anno : kotlin.Annotation {
|
|
public /*synthesized*/ constructor Anno(/*0*/ vararg value: java.lang.Class<*> /*kotlin.Array<out java.lang.Class<*>>*/)
|
|
public constructor Anno(/*0*/ vararg value: kotlin.reflect.KClass<*> /*kotlin.Array<out kotlin.reflect.KClass<*>>*/)
|
|
public abstract fun value(): kotlin.Array<kotlin.reflect.KClass<*>>
|
|
}
|
|
|
|
test.ClassObjectArrayInParam.Anno(value = {test.ClassObjectArrayInParam.class, test.ClassObjectArrayInParam.Nested.class, kotlin.String.class}: kotlin.Array<out kotlin.reflect.KClass<*>>) public open class Nested {
|
|
public constructor Nested()
|
|
}
|
|
}
|