JVM_IR KT-47939 use FunInterfaceConstructorReference as base class

This commit is contained in:
Dmitry Petrov
2021-12-07 17:30:56 +03:00
committed by TeamCityServer
parent 0ccd7a7e0c
commit 93713a9ad4
13 changed files with 158 additions and 42 deletions
@@ -2534,6 +2534,18 @@ public class NativeExtBlackBoxTestGenerated extends AbstractNativeBlackBoxTest {
public void testFunInterfaceConstructorEquality() throws Exception {
runTest("compiler/testData/codegen/box/callableReference/funInterfaceConstructor/funInterfaceConstructorEquality.kt");
}
@Test
@TestMetadata("funInterfaceConstructorIsKFunction.kt")
public void testFunInterfaceConstructorIsKFunction() throws Exception {
runTest("compiler/testData/codegen/box/callableReference/funInterfaceConstructor/funInterfaceConstructorIsKFunction.kt");
}
@Test
@TestMetadata("funInterfaceConstructorOfImplicitKFunctionType.kt")
public void testFunInterfaceConstructorOfImplicitKFunctionType() throws Exception {
runTest("compiler/testData/codegen/box/callableReference/funInterfaceConstructor/funInterfaceConstructorOfImplicitKFunctionType.kt");
}
}
@Nested