mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-27 15:51:49 +00:00
15 lines
500 B
Plaintext
15 lines
500 B
Plaintext
package test
|
|
|
|
public open class ClassObjectInParam {
|
|
public constructor ClassObjectInParam()
|
|
|
|
public final annotation class Anno : kotlin.Annotation {
|
|
public constructor Anno(/*0*/ value: java.lang.Class<out kotlin.Any?>)
|
|
public abstract fun value(): java.lang.Class<out kotlin.Any?>
|
|
}
|
|
|
|
test.ClassObjectInParam.Anno(value = test.ClassObjectInParam.class: java.lang.Class<test.ClassObjectInParam>) public open class Nested {
|
|
public constructor Nested()
|
|
}
|
|
}
|