712b2c8117
#KT-12199 Obsolete
16 lines
421 B
Kotlin
Vendored
16 lines
421 B
Kotlin
Vendored
fun foo() { }
|
|
|
|
internal fun internalBar() {}
|
|
|
|
@Target(AnnotationTarget.FILE)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
internal annotation class InternalFileAnnotation()
|
|
|
|
@Target(AnnotationTarget.FUNCTION)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
internal annotation class InternalFunctionAnnotation()
|
|
|
|
@Target(AnnotationTarget.CLASS)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
internal annotation class InternalClassAnnotation()
|