JVM_IR: fix inner class attributes for private class in interface

This commit is contained in:
Dmitry Petrov
2020-07-23 15:46:43 +03:00
parent 0741781462
commit e2a4ca10d6
5 changed files with 48 additions and 25 deletions
@@ -144,6 +144,11 @@ public class BytecodeListingTestGenerated extends AbstractBytecodeListingTest {
runTest("compiler/testData/codegen/bytecodeListing/privateDefaultSetter.kt");
}
@TestMetadata("privateNestedClassInInterface.kt")
public void testPrivateNestedClassInInterface() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/privateNestedClassInInterface.kt");
}
@TestMetadata("samAdapterAndInlinedOne.kt")
public void testSamAdapterAndInlinedOne() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/samAdapterAndInlinedOne.kt");
@@ -144,6 +144,11 @@ public class IrBytecodeListingTestGenerated extends AbstractIrBytecodeListingTes
runTest("compiler/testData/codegen/bytecodeListing/privateDefaultSetter.kt");
}
@TestMetadata("privateNestedClassInInterface.kt")
public void testPrivateNestedClassInInterface() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/privateNestedClassInInterface.kt");
}
@TestMetadata("samAdapterAndInlinedOne.kt")
public void testSamAdapterAndInlinedOne() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/samAdapterAndInlinedOne.kt");