``` object Place { fun use(block: (any: Any) -...
# announcements
j
Copy code
object Place {
    fun use(block: (any: Any) -> Unit) {

    }
}
class Repro {
    private val something: List<Int>

    init {
        Place.use { reader ->
            //this.something = listOf(1,2,3)
            //something = listOf(1,2,3)
            this@Repro.something = listOf(1,2,3)
        }
    }
}