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