summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Petukhov <victor.petukhov@jetbrains.com>2022-05-25 11:00:51 +0200
committerSpace <>2022-05-26 09:52:42 +0000
commit9aef6910abf344478aa87a57d9d13c3a1abfcad5 (patch)
treea48e7a5d1df9967e7385c90e836684882e28d420
parent1adc50bcc42cff0c1e26e5868d79979420eba0be (diff)
downloadkotlin-9aef6910abf344478aa87a57d9d13c3a1abfcad5.tar.gz
[FE 1.0] Check callable reference return type safety during resolution
^KT-51844 ^KT-52503 Fixed
-rw-r--r--analysis/low-level-api-fir/tests/org/jetbrains/kotlin/analysis/low/level/api/fir/diagnostic/compiler/based/DiagnosisCompilerTestFE10TestdataTestGenerated.java6
-rw-r--r--compiler/fir/analysis-tests/tests-gen/org/jetbrains/kotlin/test/runners/FirOldFrontendDiagnosticsTestGenerated.java6
-rw-r--r--compiler/fir/analysis-tests/tests-gen/org/jetbrains/kotlin/test/runners/FirOldFrontendDiagnosticsWithLightTreeTestGenerated.java6
-rw-r--r--compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/codegen/FirBlackBoxCodegenTestGenerated.java6
-rw-r--r--compiler/frontend/src/org/jetbrains/kotlin/util/ReenteringLazyValueComputationException.java3
-rw-r--r--compiler/resolution/src/org/jetbrains/kotlin/resolve/calls/model/CallableReferencesCandidateFactory.kt10
-rw-r--r--compiler/testData/codegen/box/callableReference/kt51844.kt15
-rw-r--r--compiler/testData/diagnostics/tests/callableReference/kt52503.kt16
-rw-r--r--compiler/testData/diagnostics/tests/callableReference/kt52503.txt19
-rw-r--r--compiler/testData/diagnostics/tests/platformTypes/kt50877.fir.kt31
-rw-r--r--compiler/testData/diagnostics/tests/platformTypes/kt50877.kt1
-rw-r--r--compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/DiagnosticTestGenerated.java6
-rw-r--r--compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/BlackBoxCodegenTestGenerated.java6
-rw-r--r--compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/IrBlackBoxCodegenTestGenerated.java6
-rw-r--r--compiler/tests-gen/org/jetbrains/kotlin/codegen/LightAnalysisModeTestGenerated.java5
-rw-r--r--core/descriptors/src/org/jetbrains/kotlin/types/error/LazyWrappedTypeComputationException.kt8
-rw-r--r--js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsCodegenBoxTestGenerated.java6
-rw-r--r--js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsCodegenBoxTestGenerated.java6
-rw-r--r--js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/wasm/semantics/IrCodegenBoxWasmTestGenerated.java5
-rw-r--r--native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestGenerated.java6
20 files changed, 140 insertions, 33 deletions
diff --git a/analysis/low-level-api-fir/tests/org/jetbrains/kotlin/analysis/low/level/api/fir/diagnostic/compiler/based/DiagnosisCompilerTestFE10TestdataTestGenerated.java b/analysis/low-level-api-fir/tests/org/jetbrains/kotlin/analysis/low/level/api/fir/diagnostic/compiler/based/DiagnosisCompilerTestFE10TestdataTestGenerated.java
index 05588767f41..3c8fb41d3d0 100644
--- a/analysis/low-level-api-fir/tests/org/jetbrains/kotlin/analysis/low/level/api/fir/diagnostic/compiler/based/DiagnosisCompilerTestFE10TestdataTestGenerated.java
+++ b/analysis/low-level-api-fir/tests/org/jetbrains/kotlin/analysis/low/level/api/fir/diagnostic/compiler/based/DiagnosisCompilerTestFE10TestdataTestGenerated.java
@@ -2815,6 +2815,12 @@ public class DiagnosisCompilerTestFE10TestdataTestGenerated extends AbstractDiag
}
@Test
+ @TestMetadata("kt52503.kt")
+ public void testKt52503() throws Exception {
+ runTest("compiler/testData/diagnostics/tests/callableReference/kt52503.kt");
+ }
+
+ @Test
@TestMetadata("kt7430_wrongClassOnLHS.kt")
public void testKt7430_wrongClassOnLHS() throws Exception {
runTest("compiler/testData/diagnostics/tests/callableReference/kt7430_wrongClassOnLHS.kt");
diff --git a/compiler/fir/analysis-tests/tests-gen/org/jetbrains/kotlin/test/runners/FirOldFrontendDiagnosticsTestGenerated.java b/compiler/fir/analysis-tests/tests-gen/org/jetbrains/kotlin/test/runners/FirOldFrontendDiagnosticsTestGenerated.java
index ceb4d159ce0..e525cc6cb68 100644
--- a/compiler/fir/analysis-tests/tests-gen/org/jetbrains/kotlin/test/runners/FirOldFrontendDiagnosticsTestGenerated.java
+++ b/compiler/fir/analysis-tests/tests-gen/org/jetbrains/kotlin/test/runners/FirOldFrontendDiagnosticsTestGenerated.java
@@ -2815,6 +2815,12 @@ public class FirOldFrontendDiagnosticsTestGenerated extends AbstractFirDiagnosti
}
@Test
+ @TestMetadata("kt52503.kt")
+ public void testKt52503() throws Exception {
+ runTest("compiler/testData/diagnostics/tests/callableReference/kt52503.kt");
+ }
+
+ @Test
@TestMetadata("kt7430_wrongClassOnLHS.kt")
public void testKt7430_wrongClassOnLHS() throws Exception {
runTest("compiler/testData/diagnostics/tests/callableReference/kt7430_wrongClassOnLHS.kt");
diff --git a/compiler/fir/analysis-tests/tests-gen/org/jetbrains/kotlin/test/runners/FirOldFrontendDiagnosticsWithLightTreeTestGenerated.java b/compiler/fir/analysis-tests/tests-gen/org/jetbrains/kotlin/test/runners/FirOldFrontendDiagnosticsWithLightTreeTestGenerated.java
index a25e1beecc5..311449478d0 100644
--- a/compiler/fir/analysis-tests/tests-gen/org/jetbrains/kotlin/test/runners/FirOldFrontendDiagnosticsWithLightTreeTestGenerated.java
+++ b/compiler/fir/analysis-tests/tests-gen/org/jetbrains/kotlin/test/runners/FirOldFrontendDiagnosticsWithLightTreeTestGenerated.java
@@ -2815,6 +2815,12 @@ public class FirOldFrontendDiagnosticsWithLightTreeTestGenerated extends Abstrac
}
@Test
+ @TestMetadata("kt52503.kt")
+ public void testKt52503() throws Exception {
+ runTest("compiler/testData/diagnostics/tests/callableReference/kt52503.kt");
+ }
+
+ @Test
@TestMetadata("kt7430_wrongClassOnLHS.kt")
public void testKt7430_wrongClassOnLHS() throws Exception {
runTest("compiler/testData/diagnostics/tests/callableReference/kt7430_wrongClassOnLHS.kt");
diff --git a/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/codegen/FirBlackBoxCodegenTestGenerated.java b/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/codegen/FirBlackBoxCodegenTestGenerated.java
index 79ce8239177..830bd5b5c9e 100644
--- a/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/codegen/FirBlackBoxCodegenTestGenerated.java
+++ b/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/codegen/FirBlackBoxCodegenTestGenerated.java
@@ -3130,6 +3130,12 @@ public class FirBlackBoxCodegenTestGenerated extends AbstractFirBlackBoxCodegenT
}
@Test
+ @TestMetadata("kt51844.kt")
+ public void testKt51844() throws Exception {
+ runTest("compiler/testData/codegen/box/callableReference/kt51844.kt");
+ }
+
+ @Test
@TestMetadata("nested.kt")
public void testNested() throws Exception {
runTest("compiler/testData/codegen/box/callableReference/nested.kt");
diff --git a/compiler/frontend/src/org/jetbrains/kotlin/util/ReenteringLazyValueComputationException.java b/compiler/frontend/src/org/jetbrains/kotlin/util/ReenteringLazyValueComputationException.java
index 5be947c2021..ed607710a45 100644
--- a/compiler/frontend/src/org/jetbrains/kotlin/util/ReenteringLazyValueComputationException.java
+++ b/compiler/frontend/src/org/jetbrains/kotlin/util/ReenteringLazyValueComputationException.java
@@ -19,8 +19,9 @@ package org.jetbrains.kotlin.util;
import com.intellij.openapi.application.Application;
import com.intellij.openapi.application.ApplicationManager;
import org.jetbrains.annotations.NotNull;
+import org.jetbrains.kotlin.types.error.LazyWrappedTypeComputationException;
-public class ReenteringLazyValueComputationException extends RuntimeException {
+public class ReenteringLazyValueComputationException extends LazyWrappedTypeComputationException {
public ReenteringLazyValueComputationException() {
}
diff --git a/compiler/resolution/src/org/jetbrains/kotlin/resolve/calls/model/CallableReferencesCandidateFactory.kt b/compiler/resolution/src/org/jetbrains/kotlin/resolve/calls/model/CallableReferencesCandidateFactory.kt
index ba69a1ef2b7..92a83736f13 100644
--- a/compiler/resolution/src/org/jetbrains/kotlin/resolve/calls/model/CallableReferencesCandidateFactory.kt
+++ b/compiler/resolution/src/org/jetbrains/kotlin/resolve/calls/model/CallableReferencesCandidateFactory.kt
@@ -27,6 +27,7 @@ import org.jetbrains.kotlin.types.*
import org.jetbrains.kotlin.types.error.ErrorScopeKind
import org.jetbrains.kotlin.types.error.ErrorUtils
import org.jetbrains.kotlin.types.error.ErrorTypeKind
+import org.jetbrains.kotlin.types.error.LazyWrappedTypeComputationException
import org.jetbrains.kotlin.types.expressions.CoercionStrategy
import org.jetbrains.kotlin.types.typeUtil.isUnit
import org.jetbrains.kotlin.utils.SmartList
@@ -239,8 +240,15 @@ class CallableReferencesCandidateFactory(
// lower(Unit!) = Unit
val returnExpectedType = inputOutputTypes.outputType
+ fun isReturnTypeNonUnitSafe(): Boolean =
+ try {
+ descriptor.returnType?.isUnit() == false
+ } catch (e: LazyWrappedTypeComputationException) {
+ false
+ }
+
val coercion =
- if (returnExpectedType.isUnit() && descriptor.returnType?.isUnit() == false)
+ if (returnExpectedType.isUnit() && isReturnTypeNonUnitSafe())
CoercionStrategy.COERCION_TO_UNIT
else
CoercionStrategy.NO_COERCION
diff --git a/compiler/testData/codegen/box/callableReference/kt51844.kt b/compiler/testData/codegen/box/callableReference/kt51844.kt
new file mode 100644
index 00000000000..83712bb4021
--- /dev/null
+++ b/compiler/testData/codegen/box/callableReference/kt51844.kt
@@ -0,0 +1,15 @@
+// WITH_STDLIB
+
+abstract class Foo {
+ abstract fun contains(x: Int);
+}
+
+// ERROR: Type checking has run into a recursive problem. Easiest workaround: specify types of your declarations explicitly
+fun Foo.contains(vararg xs: Int) = xs.forEach(this::contains)
+
+fun box(): String {
+ object : Foo() {
+ override fun contains(x: Int) {}
+ }.contains(1)
+ return "OK"
+}
diff --git a/compiler/testData/diagnostics/tests/callableReference/kt52503.kt b/compiler/testData/diagnostics/tests/callableReference/kt52503.kt
new file mode 100644
index 00000000000..4c12774c8c7
--- /dev/null
+++ b/compiler/testData/diagnostics/tests/callableReference/kt52503.kt
@@ -0,0 +1,16 @@
+// FIR_IDENTICAL
+// WITH_STDLIB
+
+abstract class Foo
+
+object A {
+ fun Foo.contains(vararg xs: Int) = // 1
+ xs.forEach(this::<!EXTENSION_IN_CLASS_REFERENCE_NOT_ALLOWED!>contains<!>) // resolved to (2) in 1.7.0-RC, should be error "Type checking has run into a recursive problem"
+}
+
+fun Any.contains(vararg xs: Int) {} // 2
+
+fun box(): String {
+ object : Foo() {}.contains(1)
+ return "OK"
+} \ No newline at end of file
diff --git a/compiler/testData/diagnostics/tests/callableReference/kt52503.txt b/compiler/testData/diagnostics/tests/callableReference/kt52503.txt
new file mode 100644
index 00000000000..59a01895ac5
--- /dev/null
+++ b/compiler/testData/diagnostics/tests/callableReference/kt52503.txt
@@ -0,0 +1,19 @@
+package
+
+public fun box(): kotlin.String
+public fun kotlin.Any.contains(/*0*/ vararg xs: kotlin.Int /*kotlin.IntArray*/): kotlin.Unit
+
+public object A {
+ private constructor A()
+ public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
+ public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
+ public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
+ public final fun Foo.contains(/*0*/ vararg xs: kotlin.Int /*kotlin.IntArray*/): kotlin.Unit
+}
+
+public abstract class Foo {
+ public constructor Foo()
+ public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
+ public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
+ public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
+}
diff --git a/compiler/testData/diagnostics/tests/platformTypes/kt50877.fir.kt b/compiler/testData/diagnostics/tests/platformTypes/kt50877.fir.kt
deleted file mode 100644
index 99d5b007510..00000000000
--- a/compiler/testData/diagnostics/tests/platformTypes/kt50877.fir.kt
+++ /dev/null
@@ -1,31 +0,0 @@
-// FULL_JDK
-// WITH_STDLIB
-
-// FILE: Schematic.kt
-class Schematic {
- var name: String? = null
-
- var error: String? = null
-
- override fun toString(): String {
- return name!!
- }
-}
-
-// FILE: SortedListModel.java
-import java.util.Comparator;
-
-public class SortedListModel<T> {
- public SortedListModel(Comparator<? super T> comparator) {
- }
-}
-
-
-// FILE: main.kt
-val model = SortedListModel<Schematic>(Comparator.comparing { b1: Schematic ->
- when {
- b1.error != null -> 2
- b1.name!!.contains(":") -> 1
- else -> 0
- }
-}.thenComparing { b1: Schematic -> b1.name!! }) \ No newline at end of file
diff --git a/compiler/testData/diagnostics/tests/platformTypes/kt50877.kt b/compiler/testData/diagnostics/tests/platformTypes/kt50877.kt
index 99d5b007510..1b57f849afd 100644
--- a/compiler/testData/diagnostics/tests/platformTypes/kt50877.kt
+++ b/compiler/testData/diagnostics/tests/platformTypes/kt50877.kt
@@ -1,3 +1,4 @@
+// FIR_IDENTICAL
// FULL_JDK
// WITH_STDLIB
diff --git a/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/DiagnosticTestGenerated.java b/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/DiagnosticTestGenerated.java
index 1dc93e33c84..614e4e99be2 100644
--- a/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/DiagnosticTestGenerated.java
+++ b/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/DiagnosticTestGenerated.java
@@ -2821,6 +2821,12 @@ public class DiagnosticTestGenerated extends AbstractDiagnosticTest {
}
@Test
+ @TestMetadata("kt52503.kt")
+ public void testKt52503() throws Exception {
+ runTest("compiler/testData/diagnostics/tests/callableReference/kt52503.kt");
+ }
+
+ @Test
@TestMetadata("kt7430_wrongClassOnLHS.kt")
public void testKt7430_wrongClassOnLHS() throws Exception {
runTest("compiler/testData/diagnostics/tests/callableReference/kt7430_wrongClassOnLHS.kt");
diff --git a/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/BlackBoxCodegenTestGenerated.java b/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/BlackBoxCodegenTestGenerated.java
index 00db29c2256..7497764b71d 100644
--- a/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/BlackBoxCodegenTestGenerated.java
+++ b/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/BlackBoxCodegenTestGenerated.java
@@ -3034,6 +3034,12 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
}
@Test
+ @TestMetadata("kt51844.kt")
+ public void testKt51844() throws Exception {
+ runTest("compiler/testData/codegen/box/callableReference/kt51844.kt");
+ }
+
+ @Test
@TestMetadata("nested.kt")
public void testNested() throws Exception {
runTest("compiler/testData/codegen/box/callableReference/nested.kt");
diff --git a/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/IrBlackBoxCodegenTestGenerated.java b/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/IrBlackBoxCodegenTestGenerated.java
index a0808c6543b..b817f4119ce 100644
--- a/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/IrBlackBoxCodegenTestGenerated.java
+++ b/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/IrBlackBoxCodegenTestGenerated.java
@@ -3130,6 +3130,12 @@ public class IrBlackBoxCodegenTestGenerated extends AbstractIrBlackBoxCodegenTes
}
@Test
+ @TestMetadata("kt51844.kt")
+ public void testKt51844() throws Exception {
+ runTest("compiler/testData/codegen/box/callableReference/kt51844.kt");
+ }
+
+ @Test
@TestMetadata("nested.kt")
public void testNested() throws Exception {
runTest("compiler/testData/codegen/box/callableReference/nested.kt");
diff --git a/compiler/tests-gen/org/jetbrains/kotlin/codegen/LightAnalysisModeTestGenerated.java b/compiler/tests-gen/org/jetbrains/kotlin/codegen/LightAnalysisModeTestGenerated.java
index 894e71a6d15..4dd95575857 100644
--- a/compiler/tests-gen/org/jetbrains/kotlin/codegen/LightAnalysisModeTestGenerated.java
+++ b/compiler/tests-gen/org/jetbrains/kotlin/codegen/LightAnalysisModeTestGenerated.java
@@ -2658,6 +2658,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
runTest("compiler/testData/codegen/box/callableReference/kt50172.kt");
}
+ @TestMetadata("kt51844.kt")
+ public void testKt51844() throws Exception {
+ runTest("compiler/testData/codegen/box/callableReference/kt51844.kt");
+ }
+
@TestMetadata("nested.kt")
public void testNested() throws Exception {
runTest("compiler/testData/codegen/box/callableReference/nested.kt");
diff --git a/core/descriptors/src/org/jetbrains/kotlin/types/error/LazyWrappedTypeComputationException.kt b/core/descriptors/src/org/jetbrains/kotlin/types/error/LazyWrappedTypeComputationException.kt
new file mode 100644
index 00000000000..44d0ee1f6da
--- /dev/null
+++ b/core/descriptors/src/org/jetbrains/kotlin/types/error/LazyWrappedTypeComputationException.kt
@@ -0,0 +1,8 @@
+/*
+ * Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
+ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
+ */
+
+package org.jetbrains.kotlin.types.error
+
+abstract class LazyWrappedTypeComputationException : RuntimeException()
diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsCodegenBoxTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsCodegenBoxTestGenerated.java
index 35dc8426450..5206c552095 100644
--- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsCodegenBoxTestGenerated.java
+++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsCodegenBoxTestGenerated.java
@@ -1984,6 +1984,12 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
}
@Test
+ @TestMetadata("kt51844.kt")
+ public void testKt51844() throws Exception {
+ runTest("compiler/testData/codegen/box/callableReference/kt51844.kt");
+ }
+
+ @Test
@TestMetadata("nested.kt")
public void testNested() throws Exception {
runTest("compiler/testData/codegen/box/callableReference/nested.kt");
diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsCodegenBoxTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsCodegenBoxTestGenerated.java
index 12b8b1cba11..b17f4de25cd 100644
--- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsCodegenBoxTestGenerated.java
+++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsCodegenBoxTestGenerated.java
@@ -2026,6 +2026,12 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
}
@Test
+ @TestMetadata("kt51844.kt")
+ public void testKt51844() throws Exception {
+ runTest("compiler/testData/codegen/box/callableReference/kt51844.kt");
+ }
+
+ @Test
@TestMetadata("nested.kt")
public void testNested() throws Exception {
runTest("compiler/testData/codegen/box/callableReference/nested.kt");
diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/wasm/semantics/IrCodegenBoxWasmTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/wasm/semantics/IrCodegenBoxWasmTestGenerated.java
index 570aae315b8..5917b91d984 100644
--- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/wasm/semantics/IrCodegenBoxWasmTestGenerated.java
+++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/testOld/wasm/semantics/IrCodegenBoxWasmTestGenerated.java
@@ -1808,6 +1808,11 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
runTest("compiler/testData/codegen/box/callableReference/kt50172.kt");
}
+ @TestMetadata("kt51844.kt")
+ public void testKt51844() throws Exception {
+ runTest("compiler/testData/codegen/box/callableReference/kt51844.kt");
+ }
+
@TestMetadata("nested.kt")
public void testNested() throws Exception {
runTest("compiler/testData/codegen/box/callableReference/nested.kt");
diff --git a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestGenerated.java b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestGenerated.java
index 9ccdb438110..df8e562f1ed 100644
--- a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestGenerated.java
+++ b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestGenerated.java
@@ -2078,6 +2078,12 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest
}
@Test
+ @TestMetadata("kt51844.kt")
+ public void testKt51844() throws Exception {
+ runTest("compiler/testData/codegen/box/callableReference/kt51844.kt");
+ }
+
+ @Test
@TestMetadata("nested.kt")
public void testNested() throws Exception {
runTest("compiler/testData/codegen/box/callableReference/nested.kt");