diff --git a/compiler/testData/codegen/bytecodeText/directInvoke/inplaceClosure.kt b/compiler/testData/codegen/bytecodeText/directInvoke/inplaceClosure.kt index d7833e060aa..9f79978f7aa 100644 --- a/compiler/testData/codegen/bytecodeText/directInvoke/inplaceClosure.kt +++ b/compiler/testData/codegen/bytecodeText/directInvoke/inplaceClosure.kt @@ -1,4 +1,4 @@ -fun box() { +fun test() { 1.{Int.() -> 2}() } diff --git a/compiler/testData/codegen/bytecodeText/directInvoke/localFun.kt b/compiler/testData/codegen/bytecodeText/directInvoke/localFun.kt index de43ea3c151..2dce03314da 100644 --- a/compiler/testData/codegen/bytecodeText/directInvoke/localFun.kt +++ b/compiler/testData/codegen/bytecodeText/directInvoke/localFun.kt @@ -1,4 +1,4 @@ -fun box() { +fun test() { fun local(s: Int) { }