9 lines
513 B
Plaintext
Vendored
9 lines
513 B
Plaintext
Vendored
package test {
|
|
@Retention(value = AnnotationRetention.SOURCE) @Target(allowedTargets = {AnnotationTarget.CLASS, AnnotationTarget.CONSTRUCTOR, AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY, AnnotationTarget.VALUE_PARAMETER, AnnotationTarget.TYPE, AnnotationTarget.TYPE_PARAMETER}) annotation class A constructor() : Annotation
|
|
enum class Enum private constructor() : Enum<Enum> {
|
|
enum entry ENTRY
|
|
}
|
|
class Klass constructor()
|
|
fun <T> function(param: Unit)
|
|
val property: Unit
|
|
} |