Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
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
}
}