// "Convert to anonymous object" "true" interface I { fun bar(): Unit } fun foo() { } fun test() { object : I { override fun bar() { foo() } } }