// WITH_RUNTIME fun foo(runnable: Runnable) {} fun bar() { foo(object : Runnable { override fun run() { throw UnsupportedOperationException() } }) }