Files
kotlin/compiler/testData/loadJava/compiledJava/annotations/AnnotatedValueParameter.txt
Denis Zharkov 6ca7d2aad7 Regenerate test data
Add properties for Java annotations
2015-04-23 08:27:41 +03:00

13 lines
488 B
Plaintext
Vendored

package test
public open class AnnotatedValueParameter {
public constructor AnnotatedValueParameter()
public open fun f(/*0*/ test.AnnotatedValueParameter.Anno(value = "non-empty": kotlin.String) p0: kotlin.(Mutable)List<kotlin.String!>!): kotlin.Unit
public final annotation class Anno : kotlin.Annotation {
public constructor Anno(/*0*/ value: kotlin.String)
public final val value: kotlin.String
public abstract fun value(): kotlin.String
}
}