Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
534b00eff856e0e4dcaf105df9a043d9b1263ff7
/
.
/
compiler
/
testData
/
codegen
/
box
/
constants
/
privateConst.kt
blob: 94cb598b25059149c5ccc87c293d4a22185011c1 [
file
]
fun
<
T
>
eval
(
fn
:
()
->
T
)
=
fn
()
private
const
val z
=
"OK"
;
fun box
():
String
{
return
eval
{
z
}
}