Minor, add box test for unreachable uninitialized property

#KT-44496
This commit is contained in:
Alexander Udalov
2021-03-08 20:40:04 +01:00
parent 247efb220c
commit 5fc9f3bc17
9 changed files with 64 additions and 0 deletions
@@ -27512,6 +27512,12 @@ public class FirBlackBoxCodegenTestGenerated extends AbstractFirBlackBoxCodegenT
runTest("compiler/testData/codegen/box/properties/typeInferredFromGetter.kt");
}
@Test
@TestMetadata("unreachableUninitializedProperty.kt")
public void testUnreachableUninitializedProperty() throws Exception {
runTest("compiler/testData/codegen/box/properties/unreachableUninitializedProperty.kt");
}
@Nested
@TestMetadata("compiler/testData/codegen/box/properties/const")
@TestDataPath("$PROJECT_ROOT")