Files
kotlin/compiler/testData/codegen/boxWithStdlib/const/constValInAnnotationDefault.kt

10 lines
162 B
Kotlin
Vendored

const val z = "OK"
annotation class A(val value: String = z)
@A
class Test
fun box(): String {
return Test::class.java.getAnnotation(A::class.java).value
}