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