Support MutablePropertyReferenceN supertypes in LambdaInfo

#KT-37087 Fixed
This commit is contained in:
Alexander Udalov
2020-02-27 15:32:56 +01:00
parent 058c6bc578
commit 0f7122a88a
9 changed files with 113 additions and 4 deletions
@@ -1556,6 +1556,16 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
runTest("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences/innerClassConstuctorReference.kt");
}
@TestMetadata("mutableBoundPropertyReferenceFromClass.kt")
public void testMutableBoundPropertyReferenceFromClass() throws Exception {
runTest("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences/mutableBoundPropertyReferenceFromClass.kt");
}
@TestMetadata("mutablePropertyReferenceFromClass.kt")
public void testMutablePropertyReferenceFromClass() throws Exception {
runTest("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences/mutablePropertyReferenceFromClass.kt");
}
@TestMetadata("privateFunctionReference.kt")
public void testPrivateFunctionReference() throws Exception {
runTest("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining/callableReferences/privateFunctionReference.kt");