Add tests for property const initializers
Merge-request: KT-MR-8661 Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
This commit is contained in:
committed by
Space Team
parent
3a9ca1c1eb
commit
e75d739c7a
+20
@@ -29314,6 +29314,26 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
|
||||
runTest("compiler/testData/codegen/box/properties/initOrderMultiModule.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("initializerOfConstValWithConst.kt")
|
||||
public void testInitializerOfConstValWithConst() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/initializerOfConstValWithConst.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("initializerOfConstValWithConstExpr.kt")
|
||||
public void testInitializerOfConstValWithConstExpr() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/initializerOfConstValWithConstExpr.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("initializerOfValWithConstExpr.kt")
|
||||
public void testInitializerOfValWithConstExpr() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/initializerOfValWithConstExpr.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("initializerOfValWithNonConstExpr.kt")
|
||||
public void testInitializerOfValWithNonConstExpr() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/initializerOfValWithNonConstExpr.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("javaGenericSynthProperty.kt")
|
||||
public void testJavaGenericSynthProperty() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/properties/javaGenericSynthProperty.kt");
|
||||
|
||||
Reference in New Issue
Block a user