Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
06ab8cc69e303e70578de24dd9a1cf4ebafff93a
/
.
/
compiler
/
testData
/
codegen
/
box
/
involvesIrInterpreter
/
annotationClassWithInner.kt
blob: 0e0547fd4d0dd2bc5e42973a904f5545ed5e9237 [
file
]
val a
=
"OK"
annotation
class
Anno
{
class
Inner
{
val shouldNotBeEvaluated
=
a
}
}
fun box
():
String
{
return
Anno
.
Inner
().
shouldNotBeEvaluated
}