Files
kotlin-fork/compiler/testData/codegen/box/involvesIrInterpreter/annotationClassWithInner.kt
T

12 lines
169 B
Kotlin
Vendored

val a = "OK"
annotation class Anno {
class Inner {
val shouldNotBeEvaluated = a
}
}
fun box(): String {
return Anno.Inner().shouldNotBeEvaluated
}