Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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
}