Fix for KT-9855: java.lang.IllegalAccessError when using private package level operator method

#KT-9855 Fixed
This commit is contained in:
Michael Bogdanov
2015-11-05 12:58:56 +03:00
parent bd2b01ac1c
commit 4d77181692
3 changed files with 22 additions and 1 deletions
@@ -6435,6 +6435,12 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/codegen/box/private/arrayConvention.kt");
doTest(fileName);
}
@TestMetadata("kt9855.kt")
public void testKt9855() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/codegen/box/private/kt9855.kt");
doTest(fileName);
}
}
@TestMetadata("compiler/testData/codegen/box/privateConstructors")