/* * Copy of JVM-backend test * Found at: compiler/testData/codegen/boxInline/anonymousObject/anonymousObjectOnCallSite.2.kt */ package test abstract class A { abstract fun getO() : R abstract fun getK() : R } inline fun doWork(job: ()-> R) : R { return job() }