JVM_IR KT-44627 fix bridge signature for parameter with primitive bound

This commit is contained in:
Dmitry Petrov
2021-02-15 15:49:14 +03:00
parent fa0f967c83
commit b262d09a81
8 changed files with 101 additions and 9 deletions
@@ -215,6 +215,16 @@ public class BytecodeListingTestGenerated extends AbstractBytecodeListingTest {
runTest("compiler/testData/codegen/bytecodeListing/noRemoveAtInReadOnly.kt");
}
@TestMetadata("overrideWithPrimitiveUpperBound.kt")
public void testOverrideWithPrimitiveUpperBound() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/overrideWithPrimitiveUpperBound.kt");
}
@TestMetadata("overrideWithPrimitiveUpperBound2.kt")
public void testOverrideWithPrimitiveUpperBound2() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/overrideWithPrimitiveUpperBound2.kt");
}
@TestMetadata("privateCompanionFields.kt")
public void testPrivateCompanionFields() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/privateCompanionFields.kt");
@@ -215,6 +215,16 @@ public class IrBytecodeListingTestGenerated extends AbstractIrBytecodeListingTes
runTest("compiler/testData/codegen/bytecodeListing/noRemoveAtInReadOnly.kt");
}
@TestMetadata("overrideWithPrimitiveUpperBound.kt")
public void testOverrideWithPrimitiveUpperBound() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/overrideWithPrimitiveUpperBound.kt");
}
@TestMetadata("overrideWithPrimitiveUpperBound2.kt")
public void testOverrideWithPrimitiveUpperBound2() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/overrideWithPrimitiveUpperBound2.kt");
}
@TestMetadata("privateCompanionFields.kt")
public void testPrivateCompanionFields() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/privateCompanionFields.kt");