8 lines
217 B
Plaintext
Vendored
8 lines
217 B
Plaintext
Vendored
import kotlin.annotation.AnnotationRetention
|
|
|
|
// "Change existent retention to SOURCE" "true"
|
|
class AnnotationRetention
|
|
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
@Target(AnnotationTarget.EXPRESSION)
|
|
annotation class Ann |