package test fun eval(fn: () -> T) = fn() private val prop = "O" private fun test() = "K" fun box(): String { return eval { prop + test() } }