6ebe0c30ec
#KT-9299 Fixed
16 lines
304 B
Plaintext
Vendored
16 lines
304 B
Plaintext
Vendored
package a
|
|
|
|
@Target(AnnotationTarget.FILE)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
internal annotation class FileAnnotation()
|
|
|
|
@Target(AnnotationTarget.CLASS)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
internal annotation class ClassAnnotation()
|
|
|
|
internal class A
|
|
|
|
internal fun a(): String {
|
|
return ":)"
|
|
}
|