[Tests] Add regression test for #KT-62865
This commit is contained in:
committed by
Space Team
parent
eb0f4167b3
commit
984493fe8b
+6
@@ -2282,6 +2282,12 @@ public class FirLightTreeBytecodeListingTestGenerated extends AbstractFirLightTr
|
||||
runTest("compiler/testData/codegen/bytecodeListing/sam/samAdapterInInlineLambda.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("samWithContravariantProjection.kt")
|
||||
public void testSamWithContravariantProjection() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/sam/samWithContravariantProjection.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("severalProxyFunsInInit.kt")
|
||||
public void testSeveralProxyFunsInInit() throws Exception {
|
||||
|
||||
+6
@@ -2282,6 +2282,12 @@ public class FirPsiBytecodeListingTestGenerated extends AbstractFirPsiBytecodeLi
|
||||
runTest("compiler/testData/codegen/bytecodeListing/sam/samAdapterInInlineLambda.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("samWithContravariantProjection.kt")
|
||||
public void testSamWithContravariantProjection() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/sam/samWithContravariantProjection.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("severalProxyFunsInInit.kt")
|
||||
public void testSeveralProxyFunsInInit() throws Exception {
|
||||
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
// FULL_JDK
|
||||
// ISSUE: KT-62865
|
||||
// FILE: test.kt
|
||||
import java.util.function.Consumer
|
||||
|
||||
fun foo(x: Any) {}
|
||||
|
||||
class A {
|
||||
fun doOnSuccess(consumer: Consumer<in String>) {
|
||||
}
|
||||
}
|
||||
|
||||
fun example() {
|
||||
val instance = A()
|
||||
instance.doOnSuccess(::foo)
|
||||
}
|
||||
|
||||
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
@kotlin.Metadata
|
||||
public final class A {
|
||||
// source: 'test.kt'
|
||||
public method <init>(): void
|
||||
public final method doOnSuccess(@org.jetbrains.annotations.NotNull p0: java.util.function.Consumer): void
|
||||
}
|
||||
|
||||
@kotlin.Metadata
|
||||
synthetic final class TestKt$example$1 {
|
||||
// source: 'test.kt'
|
||||
enclosing method TestKt.example()V
|
||||
public final static field INSTANCE: TestKt$example$1
|
||||
inner (anonymous) class TestKt$example$1
|
||||
static method <clinit>(): void
|
||||
method <init>(): void
|
||||
public synthetic bridge method invoke(p0: java.lang.Object): java.lang.Object
|
||||
public final method invoke(p0: java.lang.Object): void
|
||||
}
|
||||
|
||||
@kotlin.Metadata
|
||||
public final class TestKt {
|
||||
// source: 'test.kt'
|
||||
inner (anonymous) class TestKt$example$1
|
||||
private final static method example$lambda$0(p0: kotlin.jvm.functions.Function1, p1: java.lang.Object): void
|
||||
public final static method example(): void
|
||||
public final static method foo(@org.jetbrains.annotations.NotNull p0: java.lang.Object): void
|
||||
}
|
||||
+6
@@ -2282,6 +2282,12 @@ public class IrBytecodeListingTestGenerated extends AbstractIrBytecodeListingTes
|
||||
runTest("compiler/testData/codegen/bytecodeListing/sam/samAdapterInInlineLambda.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("samWithContravariantProjection.kt")
|
||||
public void testSamWithContravariantProjection() throws Exception {
|
||||
runTest("compiler/testData/codegen/bytecodeListing/sam/samWithContravariantProjection.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("severalProxyFunsInInit.kt")
|
||||
public void testSeveralProxyFunsInInit() throws Exception {
|
||||
|
||||
Reference in New Issue
Block a user