fun eval(fn: () -> T) = fn() class My { companion object { val my: String = "O" get() = eval { field } + "K" } } fun box() = My.my