[SLC] add more tests on vararg
^KT-61422
This commit is contained in:
committed by
Space Team
parent
3a577e1c31
commit
ecb808992d
+54
@@ -354,6 +354,54 @@ public class SymbolLightClassesByPsiForLibraryTestGenerated extends AbstractSymb
|
|||||||
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/valueClassInSignature.kt");
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/valueClassInSignature.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithIncompletedTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithIncompletedTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithIncompletedTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithIncompletedTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithoutTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithoutTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithoutTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithoutTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithoutTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithoutTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithIncompletedTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithIncompletedTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithIncompletedTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithoutTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithoutTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithoutTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithoutTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithoutTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithoutTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("wildcardOptimization.kt")
|
@TestMetadata("wildcardOptimization.kt")
|
||||||
public void testWildcardOptimization() throws Exception {
|
public void testWildcardOptimization() throws Exception {
|
||||||
@@ -453,6 +501,12 @@ public class SymbolLightClassesByPsiForLibraryTestGenerated extends AbstractSymb
|
|||||||
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/valueClassInSignature.kt");
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/valueClassInSignature.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedType.kt")
|
||||||
|
public void testVarargParameterWithIncompletedType() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/varargParameterWithIncompletedType.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("varargParameterWithoutType.kt")
|
@TestMetadata("varargParameterWithoutType.kt")
|
||||||
public void testVarargParameterWithoutType() throws Exception {
|
public void testVarargParameterWithoutType() throws Exception {
|
||||||
|
|||||||
+54
@@ -354,6 +354,54 @@ public class SymbolLightClassesEqualityByPsiForLibraryTestGenerated extends Abst
|
|||||||
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/valueClassInSignature.kt");
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/valueClassInSignature.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithIncompletedTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithIncompletedTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithIncompletedTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithIncompletedTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithoutTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithoutTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithoutTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithoutTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithoutTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithoutTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithIncompletedTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithIncompletedTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithIncompletedTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithoutTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithoutTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithoutTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithoutTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithoutTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithoutTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("wildcardOptimization.kt")
|
@TestMetadata("wildcardOptimization.kt")
|
||||||
public void testWildcardOptimization() throws Exception {
|
public void testWildcardOptimization() throws Exception {
|
||||||
@@ -453,6 +501,12 @@ public class SymbolLightClassesEqualityByPsiForLibraryTestGenerated extends Abst
|
|||||||
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/valueClassInSignature.kt");
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/valueClassInSignature.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedType.kt")
|
||||||
|
public void testVarargParameterWithIncompletedType() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/varargParameterWithIncompletedType.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("varargParameterWithoutType.kt")
|
@TestMetadata("varargParameterWithoutType.kt")
|
||||||
public void testVarargParameterWithoutType() throws Exception {
|
public void testVarargParameterWithoutType() throws Exception {
|
||||||
|
|||||||
+54
@@ -354,6 +354,54 @@ public class SymbolLightClassesParentingByPsiForLibraryTestGenerated extends Abs
|
|||||||
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/valueClassInSignature.kt");
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/valueClassInSignature.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithIncompletedTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithIncompletedTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithIncompletedTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithIncompletedTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithoutTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithoutTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithoutTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithoutTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithoutTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithoutTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithIncompletedTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithIncompletedTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithIncompletedTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithoutTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithoutTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithoutTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithoutTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithoutTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithoutTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("wildcardOptimization.kt")
|
@TestMetadata("wildcardOptimization.kt")
|
||||||
public void testWildcardOptimization() throws Exception {
|
public void testWildcardOptimization() throws Exception {
|
||||||
@@ -453,6 +501,12 @@ public class SymbolLightClassesParentingByPsiForLibraryTestGenerated extends Abs
|
|||||||
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/valueClassInSignature.kt");
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/valueClassInSignature.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedType.kt")
|
||||||
|
public void testVarargParameterWithIncompletedType() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/varargParameterWithIncompletedType.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("varargParameterWithoutType.kt")
|
@TestMetadata("varargParameterWithoutType.kt")
|
||||||
public void testVarargParameterWithoutType() throws Exception {
|
public void testVarargParameterWithoutType() throws Exception {
|
||||||
|
|||||||
+54
@@ -354,6 +354,54 @@ public class SymbolLightClassesByPsiForSourceTestGenerated extends AbstractSymbo
|
|||||||
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/valueClassInSignature.kt");
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/valueClassInSignature.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithIncompletedTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithIncompletedTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithIncompletedTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithIncompletedTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithoutTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithoutTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithoutTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithoutTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithoutTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithoutTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithIncompletedTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithIncompletedTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithIncompletedTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithoutTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithoutTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithoutTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithoutTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithoutTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithoutTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("wildcardOptimization.kt")
|
@TestMetadata("wildcardOptimization.kt")
|
||||||
public void testWildcardOptimization() throws Exception {
|
public void testWildcardOptimization() throws Exception {
|
||||||
@@ -453,6 +501,12 @@ public class SymbolLightClassesByPsiForSourceTestGenerated extends AbstractSymbo
|
|||||||
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/valueClassInSignature.kt");
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/valueClassInSignature.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedType.kt")
|
||||||
|
public void testVarargParameterWithIncompletedType() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/varargParameterWithIncompletedType.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("varargParameterWithoutType.kt")
|
@TestMetadata("varargParameterWithoutType.kt")
|
||||||
public void testVarargParameterWithoutType() throws Exception {
|
public void testVarargParameterWithoutType() throws Exception {
|
||||||
|
|||||||
+54
@@ -354,6 +354,54 @@ public class SymbolLightClassesEqualityByPsiForSourceTestGenerated extends Abstr
|
|||||||
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/valueClassInSignature.kt");
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/valueClassInSignature.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithIncompletedTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithIncompletedTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithIncompletedTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithIncompletedTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithoutTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithoutTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithoutTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithoutTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithoutTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithoutTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithIncompletedTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithIncompletedTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithIncompletedTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithoutTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithoutTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithoutTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithoutTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithoutTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithoutTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("wildcardOptimization.kt")
|
@TestMetadata("wildcardOptimization.kt")
|
||||||
public void testWildcardOptimization() throws Exception {
|
public void testWildcardOptimization() throws Exception {
|
||||||
@@ -453,6 +501,12 @@ public class SymbolLightClassesEqualityByPsiForSourceTestGenerated extends Abstr
|
|||||||
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/valueClassInSignature.kt");
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/valueClassInSignature.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedType.kt")
|
||||||
|
public void testVarargParameterWithIncompletedType() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/varargParameterWithIncompletedType.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("varargParameterWithoutType.kt")
|
@TestMetadata("varargParameterWithoutType.kt")
|
||||||
public void testVarargParameterWithoutType() throws Exception {
|
public void testVarargParameterWithoutType() throws Exception {
|
||||||
|
|||||||
+54
@@ -354,6 +354,54 @@ public class SymbolLightClassesParentingByPsiForSourceTestGenerated extends Abst
|
|||||||
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/valueClassInSignature.kt");
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/valueClassInSignature.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithIncompletedTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithIncompletedTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithIncompletedTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithIncompletedTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithoutTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithoutTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithoutTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithoutTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargParameterWithoutTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargParameterWithoutTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithIncompletedTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithIncompletedTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithIncompletedTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithIncompletedTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithoutTypeInAnnotationPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithoutTypeInAnnotationPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithoutTypeInAnnotationPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargPropertyWithoutTypeInPrimaryConstructor.kt")
|
||||||
|
public void testVarargPropertyWithoutTypeInPrimaryConstructor() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/varargPropertyWithoutTypeInPrimaryConstructor.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("wildcardOptimization.kt")
|
@TestMetadata("wildcardOptimization.kt")
|
||||||
public void testWildcardOptimization() throws Exception {
|
public void testWildcardOptimization() throws Exception {
|
||||||
@@ -453,6 +501,12 @@ public class SymbolLightClassesParentingByPsiForSourceTestGenerated extends Abst
|
|||||||
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/valueClassInSignature.kt");
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/valueClassInSignature.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("varargParameterWithIncompletedType.kt")
|
||||||
|
public void testVarargParameterWithIncompletedType() throws Exception {
|
||||||
|
runTest("compiler/testData/asJava/lightClasses/lightClassByPsi/facades/varargParameterWithIncompletedType.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("varargParameterWithoutType.kt")
|
@TestMetadata("varargParameterWithoutType.kt")
|
||||||
public void testVarargParameterWithoutType() throws Exception {
|
public void testVarargParameterWithoutType() throws Exception {
|
||||||
|
|||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
public final class VarargParameterWithIncompletedTypeKt /* VarargParameterWithIncompletedTypeKt*/ {
|
||||||
|
public static final /* vararg */ void someFun(error.NonExistentClass...);// someFun(error.NonExistentClass[])
|
||||||
|
}
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
public final class VarargParameterWithIncompletedTypeKt /* VarargParameterWithIncompletedTypeKt*/ {
|
||||||
|
public static final /* vararg */ void someFun(@org.jetbrains.annotations.NotNull() error.NonExistentClass...);// someFun(error.NonExistentClass[])
|
||||||
|
}
|
||||||
Vendored
+3
@@ -0,0 +1,3 @@
|
|||||||
|
fun someFun(vararg values: )
|
||||||
|
|
||||||
|
// COMPILATION_ERRORS
|
||||||
Vendored
+1
-1
@@ -1,3 +1,3 @@
|
|||||||
fun someFun(vararg values: )
|
fun someFun(vararg values)
|
||||||
|
|
||||||
// COMPILATION_ERRORS
|
// COMPILATION_ERRORS
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
|
||||||
|
public abstract @interface Fpp /* Fpp*/ {
|
||||||
|
}
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
|
||||||
|
public abstract @interface Fpp /* Fpp*/ {
|
||||||
|
}
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
annotation class Fpp(vararg prop:)
|
||||||
|
|
||||||
|
// COMPILATION_ERRORS
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
public final class Fpp /* Fpp*/ {
|
||||||
|
public /* vararg */ Fpp(error.NonExistentClass...);// .ctor(error.NonExistentClass[])
|
||||||
|
}
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
public final class Fpp /* Fpp*/ {
|
||||||
|
public /* vararg */ Fpp(@org.jetbrains.annotations.NotNull() error.NonExistentClass...);// .ctor(error.NonExistentClass[])
|
||||||
|
}
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
class Fpp(vararg prop:)
|
||||||
|
|
||||||
|
// COMPILATION_ERRORS
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
|
||||||
|
public abstract @interface Fpp /* Fpp*/ {
|
||||||
|
}
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
|
||||||
|
public abstract @interface Fpp /* Fpp*/ {
|
||||||
|
}
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
annotation class Fpp(vararg prop)
|
||||||
|
|
||||||
|
// COMPILATION_ERRORS
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
public final class Fpp /* Fpp*/ {
|
||||||
|
public /* vararg */ Fpp(error.NonExistentClass...);// .ctor(error.NonExistentClass[])
|
||||||
|
}
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
public final class Fpp /* Fpp*/ {
|
||||||
|
public /* vararg */ Fpp(@org.jetbrains.annotations.NotNull() error.NonExistentClass...);// .ctor(error.NonExistentClass[])
|
||||||
|
}
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
class Fpp(vararg prop)
|
||||||
|
|
||||||
|
// COMPILATION_ERRORS
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
|
||||||
|
public abstract @interface Fpp /* Fpp*/ {
|
||||||
|
public abstract error.NonExistentClass[] prop();// prop()
|
||||||
|
}
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
|
||||||
|
public abstract @interface Fpp /* Fpp*/ {
|
||||||
|
public abstract error.NonExistentClass[] prop();// prop()
|
||||||
|
}
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
annotation class Fpp(vararg val prop:)
|
||||||
|
|
||||||
|
// COMPILATION_ERRORS
|
||||||
+9
@@ -0,0 +1,9 @@
|
|||||||
|
public final class Fpp /* Fpp*/ {
|
||||||
|
@org.jetbrains.annotations.NotNull()
|
||||||
|
private final error.NonExistentClass[] prop;
|
||||||
|
|
||||||
|
@org.jetbrains.annotations.NotNull()
|
||||||
|
public final error.NonExistentClass[] getProp();// getProp()
|
||||||
|
|
||||||
|
public /* vararg */ Fpp(error.NonExistentClass...);// .ctor(error.NonExistentClass[])
|
||||||
|
}
|
||||||
+9
@@ -0,0 +1,9 @@
|
|||||||
|
public final class Fpp /* Fpp*/ {
|
||||||
|
@org.jetbrains.annotations.NotNull()
|
||||||
|
private final error.NonExistentClass[] prop;
|
||||||
|
|
||||||
|
@org.jetbrains.annotations.NotNull()
|
||||||
|
public final error.NonExistentClass[] getProp();// getProp()
|
||||||
|
|
||||||
|
public /* vararg */ Fpp(@org.jetbrains.annotations.NotNull() error.NonExistentClass...);// .ctor(error.NonExistentClass[])
|
||||||
|
}
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
class Fpp(vararg val prop:)
|
||||||
|
|
||||||
|
// COMPILATION_ERRORS
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
|
||||||
|
public abstract @interface Fpp /* Fpp*/ {
|
||||||
|
}
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
|
||||||
|
public abstract @interface Fpp /* Fpp*/ {
|
||||||
|
}
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
annotation class Fpp(vararg prop)
|
||||||
|
|
||||||
|
// COMPILATION_ERRORS
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
public final class Fpp /* Fpp*/ {
|
||||||
|
public /* vararg */ Fpp(error.NonExistentClass...);// .ctor(error.NonExistentClass[])
|
||||||
|
}
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
public final class Fpp /* Fpp*/ {
|
||||||
|
public /* vararg */ Fpp(@org.jetbrains.annotations.NotNull() error.NonExistentClass...);// .ctor(error.NonExistentClass[])
|
||||||
|
}
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
class Fpp(vararg prop)
|
||||||
|
|
||||||
|
// COMPILATION_ERRORS
|
||||||
Reference in New Issue
Block a user