Files
kotlin/compiler/testData/loadJava/compiledJava/annotations/AnnotatedField.txt
Alexander Udalov ca8831097f Resolve annotations on Java constructors
Also add tests on custom annotations on fields and methods
2015-03-07 02:32:14 +03:00

15 lines
487 B
Plaintext

package test
public open class AnnotatedField {
public constructor AnnotatedField()
test.AnnotatedField.Anno(value = "member": kotlin.String) public final val y: kotlin.Int = 0
public final annotation class Anno : kotlin.Annotation {
public constructor Anno(/*0*/ value: kotlin.String)
public abstract fun value(): kotlin.String
}
// Static members
test.AnnotatedField.Anno(value = "static": kotlin.String) public final val x: kotlin.Int = 0
}