class Test { // TARGET_BLOCK: var field = 1 fun foo() { O() } inner class O : Runnable { override fun run() { field = 2 } } }