K2: Approximate ILT in vararg expressions properly #KT-57487 Fixed

This commit is contained in:
Mikhail Glukhikh
2023-03-28 11:10:42 +02:00
committed by Space Team
parent dead2c8be8
commit 70c5978add
12 changed files with 196 additions and 6 deletions
@@ -2323,6 +2323,12 @@ public class FirLightTreeJsIrTextTestGenerated extends AbstractFirLightTreeJsIrT
public void testVarInInit() throws Exception {
runTest("compiler/testData/ir/irText/firProblems/VarInInit.kt");
}
@Test
@TestMetadata("VarargIntegerLiteral.kt")
public void testVarargIntegerLiteral() throws Exception {
runTest("compiler/testData/ir/irText/firProblems/VarargIntegerLiteral.kt");
}
}
@Nested
@@ -2323,6 +2323,12 @@ public class FirPsiJsIrTextTestGenerated extends AbstractFirPsiJsIrTextTest {
public void testVarInInit() throws Exception {
runTest("compiler/testData/ir/irText/firProblems/VarInInit.kt");
}
@Test
@TestMetadata("VarargIntegerLiteral.kt")
public void testVarargIntegerLiteral() throws Exception {
runTest("compiler/testData/ir/irText/firProblems/VarargIntegerLiteral.kt");
}
}
@Nested
@@ -2323,6 +2323,12 @@ public class ClassicJsIrTextTestGenerated extends AbstractClassicJsIrTextTest {
public void testVarInInit() throws Exception {
runTest("compiler/testData/ir/irText/firProblems/VarInInit.kt");
}
@Test
@TestMetadata("VarargIntegerLiteral.kt")
public void testVarargIntegerLiteral() throws Exception {
runTest("compiler/testData/ir/irText/firProblems/VarargIntegerLiteral.kt");
}
}
@Nested