FE: add new tests around unresolved integer literals

Related to KT-57487, KT-57703
This commit is contained in:
Mikhail Glukhikh
2023-03-29 17:31:07 +02:00
committed by Space Team
parent 70c5978add
commit 27c4a7b7ef
13 changed files with 129 additions and 0 deletions
@@ -19253,6 +19253,12 @@ public class DiagnosticCompilerTestFE10TestdataTestGenerated extends AbstractDia
public void testTypealiasOnLong() throws Exception {
runTest("compiler/testData/diagnostics/tests/integerLiterals/typealiasOnLong.kt");
}
@Test
@TestMetadata("vararg.kt")
public void testVararg() throws Exception {
runTest("compiler/testData/diagnostics/tests/integerLiterals/vararg.kt");
}
}
@Nested
@@ -19253,6 +19253,12 @@ public class LLFirPreresolvedReversedDiagnosticCompilerFE10TestDataTestGenerated
public void testTypealiasOnLong() throws Exception {
runTest("compiler/testData/diagnostics/tests/integerLiterals/typealiasOnLong.kt");
}
@Test
@TestMetadata("vararg.kt")
public void testVararg() throws Exception {
runTest("compiler/testData/diagnostics/tests/integerLiterals/vararg.kt");
}
}
@Nested