Files
kotlin/compiler/testData/loadJava/compiledJava/annotations/StringInParam.txt
Denis Zharkov 4850fd10f0 Regenerate test data containing rendered descriptors
Introduced '@' after each annotation
2015-09-18 10:14:39 +03:00

15 lines
377 B
Plaintext
Vendored

package test
public interface StringInParam {
public final class Anno : kotlin.Annotation {
public constructor Anno(/*0*/ value: kotlin.String)
public final val value: kotlin.String
public abstract fun value(): kotlin.String
}
@test.StringInParam.Anno(value = "hello") public open class Class {
public constructor Class()
}
}