Files
kotlin/compiler/testData/loadJava/compiledJava/annotations/AnnotationWithStringConstantInParam.txt
2013-09-04 21:55:10 +04:00

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
}