6ebe0c30ec
#KT-9299 Fixed
20 lines
334 B
Kotlin
Vendored
20 lines
334 B
Kotlin
Vendored
package a
|
|
|
|
@Target(AnnotationTarget.FILE)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
internal annotation class InternalFileAnnotation()
|
|
|
|
@Target(AnnotationTarget.CLASS)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
internal annotation class InternalClassAnnotation()
|
|
|
|
class A
|
|
|
|
internal class InternalA
|
|
|
|
fun a() {
|
|
}
|
|
|
|
internal fun internalA() {
|
|
}
|