mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-30 15:51:53 +00:00
18 lines
512 B
Plaintext
18 lines
512 B
Plaintext
package test
|
|
|
|
public trait AnnotationWithStringConstantInParam : java.lang.Object {
|
|
|
|
public final annotation class Anno : jet.Annotation {
|
|
public constructor Anno(/*0*/ value: jet.String?)
|
|
public abstract fun value(): jet.String?
|
|
}
|
|
|
|
test.AnnotationWithStringConstantInParam.Anno(value = "hello": jet.String) public open class Class : java.lang.Object {
|
|
public constructor Class()
|
|
}
|
|
}
|
|
|
|
package AnnotationWithStringConstantInParam {
|
|
public val HEL: jet.String
|
|
}
|