diff --git a/compiler/testData/codegen/boxInline/anonymousObject/anonymousObjectInDefault.kt b/compiler/testData/codegen/boxInline/anonymousObject/anonymousObjectInDefault.kt index 16b4745cd82..4e61ed1f431 100644 --- a/compiler/testData/codegen/boxInline/anonymousObject/anonymousObjectInDefault.kt +++ b/compiler/testData/codegen/boxInline/anonymousObject/anonymousObjectInDefault.kt @@ -1,5 +1,6 @@ // IGNORE_BACKEND: JVM -// IGNORE_BACKEND_MULTI_MODULE: JVM, JVM_IR +// IGNORE_BACKEND_MULTI_MODULE: JVM +// NO_CHECK_LAMBDA_INLINING // FILE: 1.kt package test @@ -28,4 +29,4 @@ class A(val x: String, f: () -> IFoo = { fun box(): String { return A("O").foo.foo() -} \ No newline at end of file +} diff --git a/compiler/testData/codegen/boxInline/anonymousObject/capturedLocalFun.kt b/compiler/testData/codegen/boxInline/anonymousObject/capturedLocalFun.kt index d41efab287b..554a4996cbe 100644 --- a/compiler/testData/codegen/boxInline/anonymousObject/capturedLocalFun.kt +++ b/compiler/testData/codegen/boxInline/anonymousObject/capturedLocalFun.kt @@ -1,5 +1,6 @@ // IGNORE_BACKEND: JVM -// IGNORE_BACKEND_MULTI_MODULE: JVM, JVM_IR +// IGNORE_BACKEND_MULTI_MODULE: JVM +// NO_CHECK_LAMBDA_INLINING // FILE: 1.kt package test @@ -21,4 +22,4 @@ fun box(): String { o } return x.bar() -} \ No newline at end of file +} diff --git a/compiler/testData/codegen/boxInline/anonymousObject/capturedLocalFunRef.kt b/compiler/testData/codegen/boxInline/anonymousObject/capturedLocalFunRef.kt index e637e448eba..2599fdc2b95 100644 --- a/compiler/testData/codegen/boxInline/anonymousObject/capturedLocalFunRef.kt +++ b/compiler/testData/codegen/boxInline/anonymousObject/capturedLocalFunRef.kt @@ -1,5 +1,4 @@ -// IGNORE_BACKEND: JVM -// IGNORE_BACKEND_MULTI_MODULE: JVM, JVM_IR +// NO_CHECK_LAMBDA_INLINING // FILE: 1.kt package test @@ -21,4 +20,4 @@ fun box(): String { o } return x.bar() -} \ No newline at end of file +} diff --git a/compiler/testData/codegen/boxInline/anonymousObject/functionExpression.kt b/compiler/testData/codegen/boxInline/anonymousObject/functionExpression.kt index f77cb93d15f..93ebc35cc62 100644 --- a/compiler/testData/codegen/boxInline/anonymousObject/functionExpression.kt +++ b/compiler/testData/codegen/boxInline/anonymousObject/functionExpression.kt @@ -1,6 +1,4 @@ -// IGNORE_BACKEND: JVM -// IGNORE_BACKEND_MULTI_MODULE: JVM, JVM_IR - +// NO_CHECK_LAMBDA_INLINING // FILE: 1.kt package test @@ -28,4 +26,4 @@ fun bar(): Int { }.compute() } -fun box() = if (bar() == 42) "OK" else "fail" \ No newline at end of file +fun box() = if (bar() == 42) "OK" else "fail"