Handle unbound extension receiver in callable reference adaptation
This commit is contained in:
+5
-5
@@ -14860,6 +14860,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
@RunWith(JUnit3RunnerWithInners.class)
|
||||
public static class SerializationRegressions extends AbstractLightAnalysisModeTest {
|
||||
@TestMetadata("transitiveClash.kt")
|
||||
public void ignoreTransitiveClash() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/ir/serializationRegressions/transitiveClash.kt");
|
||||
}
|
||||
|
||||
private void runTest(String testDataFilePath) throws Exception {
|
||||
KotlinTestUtils.runTest(this::doTest, TargetBackend.JVM, testDataFilePath);
|
||||
}
|
||||
@@ -14883,11 +14888,6 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
|
||||
runTest("compiler/testData/codegen/box/ir/serializationRegressions/innerClassInEnumEntryClass.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("transitiveClash.kt")
|
||||
public void testTransitiveClash() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/ir/serializationRegressions/transitiveClash.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("useImportedMember.kt")
|
||||
public void testUseImportedMember() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/ir/serializationRegressions/useImportedMember.kt");
|
||||
|
||||
@@ -1369,6 +1369,11 @@ public class IrTextTestCaseGenerated extends AbstractIrTextTestCase {
|
||||
KotlinTestUtils.runTest(this::doTest, this, testDataFilePath);
|
||||
}
|
||||
|
||||
@TestMetadata("adaptedExtensionFunctions.kt")
|
||||
public void testAdaptedExtensionFunctions() throws Exception {
|
||||
runTest("compiler/testData/ir/irText/expressions/callableReferences/adaptedExtensionFunctions.kt");
|
||||
}
|
||||
|
||||
public void testAllFilesPresentInCallableReferences() throws Exception {
|
||||
KotlinTestUtils.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/ir/irText/expressions/callableReferences"), Pattern.compile("^(.+)\\.kt$"), null, true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user