Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
kt9603.kt
blob: 258d5c6e0a05d668bd7ba9312820fa59e086e5e3 [
file
]
fun
<
T
>
eval
(
fn
:
()
->
T
)
=
fn
()
class
A
{
public
var
prop
=
"OK"
private
set
fun test
():
String
{
return
eval
{
prop
}
}
}
fun box
():
String
=
A
().
test
()