From fc9aacfde36c305c502751f1b40a78342ac436c9 Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Thu, 29 Feb 2024 15:51:45 +0100 Subject: [PATCH] Minor, add test for issue fixed by IrFakeOverrideBuilder Fixed by f98a22e8e4b7 (KT-61514). #KT-66000 Fixed --- compiler/testData/codegen/boxInline/property/fromObject.kt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/compiler/testData/codegen/boxInline/property/fromObject.kt b/compiler/testData/codegen/boxInline/property/fromObject.kt index 5c28222b796..43733f04cbd 100644 --- a/compiler/testData/codegen/boxInline/property/fromObject.kt +++ b/compiler/testData/codegen/boxInline/property/fromObject.kt @@ -1,4 +1,6 @@ // WITH_STDLIB +// CHECK_BYTECODE_TEXT + // FILE: 1.kt package test @@ -24,3 +26,6 @@ fun box(): String { return y.result } + +// 0 INVOKEVIRTUAL test/B.setY +// 0 INVOKEVIRTUAL test/B.getY