```private fun foo(){ val any:String ...
# random
l
Copy code
private fun foo(){
        val any:String

        "".run{
           any = ""
        }
    }
could someone explain why is not possible to assign a value inside the run block in this case?