mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-22 15:51:33 +00:00
As the type is anyway replaced with not-nullable version explicitly, the only thing that changes is what type is loaded for String[][].class: - before it would be Array<Array<String?>?> - now it's Array<(out) Array<(out) String!>!> It's both a minor change and new behaviour can be considered as correct
15 lines
764 B
Plaintext
Vendored
15 lines
764 B
Plaintext
Vendored
package test
|
|
|
|
public open class ClassObjectArrayInParam {
|
|
public constructor ClassObjectArrayInParam()
|
|
|
|
public final annotation class Anno : kotlin.Annotation {
|
|
public constructor Anno(/*0*/ vararg value: kotlin.reflect.KClass<*> /*kotlin.Array<out kotlin.reflect.KClass<*>>*/)
|
|
public final val value: kotlin.Array<kotlin.reflect.KClass<*>>
|
|
}
|
|
|
|
@test.ClassObjectArrayInParam.Anno(value = {test.ClassObjectArrayInParam::class, test.ClassObjectArrayInParam.Nested::class, kotlin.String::class, kotlin.collections.(Mutable)List<(raw) kotlin.Any?>::class, kotlin.Array<(out) kotlin.Array<(out) kotlin.String!>!>::class, kotlin.Array<(out) kotlin.IntArray!>::class}) public open class Nested {
|
|
public constructor Nested()
|
|
}
|
|
}
|