mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
31 lines
786 B
Kotlin
Vendored
31 lines
786 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// IGNORE_BACKEND: JS_IR
|
|
// TODO: muted automatically, investigate should it be ran for JS or not
|
|
// IGNORE_BACKEND: JS, NATIVE
|
|
|
|
// WITH_REFLECT
|
|
|
|
import kotlin.reflect.full.valueParameters
|
|
|
|
@Retention(AnnotationRetention.RUNTIME)
|
|
annotation class Simple(val value: String)
|
|
|
|
fun local(): Any {
|
|
class A(@Simple("OK") val z: String)
|
|
return A("OK")
|
|
}
|
|
|
|
fun localCaptured(): Any {
|
|
val z = 1
|
|
class A(@Simple("K") val z: String) {
|
|
val x = z
|
|
}
|
|
return A("K")
|
|
}
|
|
|
|
fun box(): String {
|
|
return (local()::class.constructors.single().valueParameters.single().annotations.single() as Simple).value
|
|
//KT-25573
|
|
//return (localCaptured()::class.constructors.single().valueParameters.single().annotations.single() as Simple).value
|
|
}
|