Generate default constructor also for private classes when all parameters have default values

#KT-14408 Fixed
This commit is contained in:
Dmitry Jemerov
2016-11-17 11:06:31 +01:00
parent 248185943c
commit 16a133bf5c
6 changed files with 36 additions and 2 deletions
@@ -8615,6 +8615,12 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
doTest(fileName);
}
@TestMetadata("privateClass.kt")
public void testPrivateClass() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/jvmOverloads/privateClass.kt");
doTest(fileName);
}
@TestMetadata("secondaryConstructor.kt")
public void testSecondaryConstructor() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/jvmOverloads/secondaryConstructor.kt");