Files
kotlin/compiler/testData/loadJava/compiledJava/annotations/AnnotatedMethod.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

12 lines
353 B
Plaintext

package test
public open class AnnotatedMethod {
public constructor AnnotatedMethod()
test.AnnotatedMethod.Anno(value = 42: kotlin.Int) public open fun f(): kotlin.Unit
public final annotation class Anno : kotlin.Annotation {
public constructor Anno(/*0*/ value: kotlin.Int)
public abstract fun value(): kotlin.Int
}
}