mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
8 lines
176 B
Kotlin
Vendored
8 lines
176 B
Kotlin
Vendored
@Retention(AnnotationRetention.RUNTIME)
|
|
annotation class Simple(val value: String)
|
|
|
|
@Simple("OK")
|
|
fun box(): String {
|
|
return (::box.annotations.single() as Simple).value
|
|
}
|