[FIR] Fix tests for vararg execution order after rebase.

This commit is contained in:
Mark Punzalan
2020-10-02 00:01:21 +00:00
committed by teamcityserver
parent e175e87225
commit b58d75440b
16 changed files with 217 additions and 10 deletions
@@ -594,6 +594,11 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
runTest("compiler/testData/codegen/boxInline/argumentOrder/defaultParametersAndLastVararg.kt");
}
@TestMetadata("defaultParametersAndLastVarargWithCorrectOrder.kt")
public void testDefaultParametersAndLastVarargWithCorrectOrder() throws Exception {
runTest("compiler/testData/codegen/boxInline/argumentOrder/defaultParametersAndLastVarargWithCorrectOrder.kt");
}
@TestMetadata("extension.kt")
public void testExtension() throws Exception {
runTest("compiler/testData/codegen/boxInline/argumentOrder/extension.kt");
@@ -628,6 +633,11 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
public void testVarargAndDefaultParameters() throws Exception {
runTest("compiler/testData/codegen/boxInline/argumentOrder/varargAndDefaultParameters.kt");
}
@TestMetadata("varargAndDefaultParametersWithCorrectOrder.kt")
public void testVarargAndDefaultParametersWithCorrectOrder() throws Exception {
runTest("compiler/testData/codegen/boxInline/argumentOrder/varargAndDefaultParametersWithCorrectOrder.kt");
}
}
@TestMetadata("compiler/testData/codegen/boxInline/arrayConvention")