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