Support JVM polymorphic signature calls to methods with void return type

#KT-32026 Fixed
This commit is contained in:
Alexander Udalov
2019-10-29 15:32:40 +01:00
parent e009c7064e
commit 64d40b4743
7 changed files with 94 additions and 23 deletions
@@ -18419,6 +18419,11 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
public void testVarargOfObjects_before() throws Exception {
runTest("compiler/testData/codegen/box/polymorphicSignature/varargOfObjects_before.kt");
}
@TestMetadata("voidReturnType.kt")
public void testVoidReturnType() throws Exception {
runTest("compiler/testData/codegen/box/polymorphicSignature/voidReturnType.kt");
}
}
@TestMetadata("compiler/testData/codegen/box/primitiveTypes")