mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
15 lines
282 B
Kotlin
Vendored
15 lines
282 B
Kotlin
Vendored
// TODO: muted automatically, investigate should it be ran for JS or not
|
|
// IGNORE_BACKEND: JS
|
|
|
|
// WITH_REFLECT
|
|
|
|
annotation class Ann(val value: String)
|
|
|
|
@Ann("OK")
|
|
val property: String
|
|
get() = ""
|
|
|
|
fun box(): String {
|
|
return (::property.annotations.single() as Ann).value
|
|
}
|