6ebe0c30ec
#KT-9299 Fixed
20 lines
320 B
Plaintext
Vendored
20 lines
320 B
Plaintext
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 AA
|
|
|
|
fun a() {
|
|
}
|
|
|
|
internal fun aa() {
|
|
}
|