KT-43562 don't remap static inline class funs as special builtins

This commit is contained in:
Dmitry Petrov
2020-11-25 11:54:48 +03:00
parent f6c7372089
commit 498047e64e
14 changed files with 152 additions and 2 deletions
@@ -33817,6 +33817,11 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
runTest("compiler/testData/codegen/box/unsignedTypes/nullableUnsignedEqualsLiteral.kt");
}
@TestMetadata("unsignedArraySize.kt")
public void testUnsignedArraySize() throws Exception {
runTest("compiler/testData/codegen/box/unsignedTypes/unsignedArraySize.kt");
}
@TestMetadata("unsignedIntCompare.kt")
public void testUnsignedIntCompare() throws Exception {
runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare.kt");
@@ -1510,6 +1510,11 @@ public class BytecodeListingTestGenerated extends AbstractBytecodeListingTest {
runTest("compiler/testData/codegen/bytecodeListing/specialBridges/removeAtTwoSpecialBridges.kt");
}
@TestMetadata("unsignedArray.kt")
public void testUnsignedArray() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/specialBridges/unsignedArray.kt");
}
@TestMetadata("compiler/testData/codegen/bytecodeListing/specialBridges/signatures")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
@@ -31451,6 +31451,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
runTest("compiler/testData/codegen/box/unsignedTypes/nullableUnsignedEqualsLiteral.kt");
}
@TestMetadata("unsignedArraySize.kt")
public void testUnsignedArraySize() throws Exception {
runTest("compiler/testData/codegen/box/unsignedTypes/unsignedArraySize.kt");
}
@TestMetadata("unsignedIntCompare.kt")
public void testUnsignedIntCompare() throws Exception {
runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare.kt");
@@ -32046,6 +32046,11 @@ public class IrBlackBoxCodegenTestGenerated extends AbstractIrBlackBoxCodegenTes
runTest("compiler/testData/codegen/box/unsignedTypes/nullableUnsignedEqualsLiteral.kt");
}
@TestMetadata("unsignedArraySize.kt")
public void testUnsignedArraySize() throws Exception {
runTest("compiler/testData/codegen/box/unsignedTypes/unsignedArraySize.kt");
}
@TestMetadata("unsignedIntCompare.kt")
public void testUnsignedIntCompare() throws Exception {
runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare.kt");
@@ -1480,6 +1480,11 @@ public class IrBytecodeListingTestGenerated extends AbstractIrBytecodeListingTes
runTest("compiler/testData/codegen/bytecodeListing/specialBridges/removeAtTwoSpecialBridges.kt");
}
@TestMetadata("unsignedArray.kt")
public void testUnsignedArray() throws Exception {
runTest("compiler/testData/codegen/bytecodeListing/specialBridges/unsignedArray.kt");
}
@TestMetadata("compiler/testData/codegen/bytecodeListing/specialBridges/signatures")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)