KT-37779 Treat named value arguments in vararg as arguments with '*'
This commit is contained in:
+10
-5
@@ -17611,6 +17611,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
|
||||
@TestDataPath("$PROJECT_ROOT")
|
||||
@RunWith(JUnit3RunnerWithInners.class)
|
||||
public static class Optimized extends AbstractLightAnalysisModeTest {
|
||||
@TestMetadata("callableReferencesToSamePropertiesFromDifferentPackages.kt")
|
||||
public void ignoreCallableReferencesToSamePropertiesFromDifferentPackages() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/multifileClasses/optimized/callableReferencesToSamePropertiesFromDifferentPackages.kt");
|
||||
}
|
||||
|
||||
private void runTest(String testDataFilePath) throws Exception {
|
||||
KotlinTestUtils.runTest(this::doTest, TargetBackend.JVM, testDataFilePath);
|
||||
}
|
||||
@@ -17649,11 +17654,6 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
|
||||
runTest("compiler/testData/codegen/box/multifileClasses/optimized/callableReferencesToSameFunctionsFromDifferentPackages.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("callableReferencesToSamePropertiesFromDifferentPackages.kt")
|
||||
public void testCallableReferencesToSamePropertiesFromDifferentPackages() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/multifileClasses/optimized/callableReferencesToSamePropertiesFromDifferentPackages.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("calls.kt")
|
||||
public void testCalls() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/multifileClasses/optimized/calls.kt");
|
||||
@@ -28352,6 +28352,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
|
||||
runTest("compiler/testData/codegen/box/vararg/kt1978.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt37779.kt")
|
||||
public void testKt37779() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/vararg/kt37779.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt581.kt")
|
||||
public void testKt581() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/vararg/kt581.kt");
|
||||
|
||||
Reference in New Issue
Block a user