Process default arguments in array convention calls

#KT-16520 Fixed
This commit is contained in:
Mikhail Bogdanov
2020-05-05 17:30:56 +02:00
parent 3134832396
commit adc770b604
10 changed files with 226 additions and 14 deletions
@@ -10061,6 +10061,16 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
runTest("compiler/testData/codegen/box/defaultArguments/convention/incWithDefaultInGetter.kt");
}
@TestMetadata("incWithDefaults.kt")
public void testIncWithDefaults() throws Exception {
runTest("compiler/testData/codegen/box/defaultArguments/convention/incWithDefaults.kt");
}
@TestMetadata("kt16520.kt")
public void testKt16520() throws Exception {
runTest("compiler/testData/codegen/box/defaultArguments/convention/kt16520.kt");
}
@TestMetadata("kt9140.kt")
public void testKt9140() throws Exception {
runTest("compiler/testData/codegen/box/defaultArguments/convention/kt9140.kt");
@@ -10070,6 +10080,11 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
public void testPlusAssignWithDefaultInGetter() throws Exception {
runTest("compiler/testData/codegen/box/defaultArguments/convention/plusAssignWithDefaultInGetter.kt");
}
@TestMetadata("plusAssignWithDefaults.kt")
public void testPlusAssignWithDefaults() throws Exception {
runTest("compiler/testData/codegen/box/defaultArguments/convention/plusAssignWithDefaults.kt");
}
}
@TestMetadata("compiler/testData/codegen/box/defaultArguments/function")