[box-tests] Added a multi-module test on lateinit properties

This commit is contained in:
Igor Chevdar
2022-07-12 15:41:27 +03:00
committed by Space
parent 8041692144
commit 6799988227
9 changed files with 64 additions and 0 deletions
@@ -28241,6 +28241,12 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest
public void testTopLevelProperty() throws Exception {
runTest("compiler/testData/codegen/box/properties/lateinit/isInitializedAndDeinitialize/topLevelProperty.kt");
}
@Test
@TestMetadata("topLevelPropertyMultiModule.kt")
public void testTopLevelPropertyMultiModule() throws Exception {
runTest("compiler/testData/codegen/box/properties/lateinit/isInitializedAndDeinitialize/topLevelPropertyMultiModule.kt");
}
}
@Nested