Files
kotlin-fork/compiler/testData/compileJavaAgainstKotlin/annotation/retention.txt
T
2019-05-30 19:04:31 +03:00

14 lines
428 B
Plaintext
Vendored

package test
@kotlin.annotation.Retention(value = AnnotationRetention.RUNTIME) public final annotation class Runtime : kotlin.Annotation {
public constructor Runtime()
}
@kotlin.annotation.Retention(value = AnnotationRetention.SOURCE) public final annotation class Source : kotlin.Annotation {
public constructor Source()
}
@test.Runtime public/*package*/ open class Test {
public/*package*/ constructor Test()
}