6ebe0c30ec
#KT-9299 Fixed
15 lines
244 B
Kotlin
Vendored
15 lines
244 B
Kotlin
Vendored
package a
|
|
|
|
@Target(AnnotationTarget.FILE)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
annotation class FileAnnotation()
|
|
|
|
@Target(AnnotationTarget.CLASS)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
annotation class ClassAnnotation()
|
|
|
|
class A
|
|
|
|
fun a() {
|
|
}
|