Fix coroutine-related VerifyError
The problem was that we spilled the `origin` variable (see test) as Object, because we determined the type of merge(null, String) incorrectly. #KT-15973 Fixed
This commit is contained in:
@@ -5490,6 +5490,12 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
|
||||
doTest(fileName);
|
||||
}
|
||||
|
||||
@TestMetadata("mergeNullAndString.kt")
|
||||
public void testMergeNullAndString() throws Exception {
|
||||
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/coroutines/mergeNullAndString.kt");
|
||||
doTest(fileName);
|
||||
}
|
||||
|
||||
@TestMetadata("multipleInvokeCalls.kt")
|
||||
public void testMultipleInvokeCalls() throws Exception {
|
||||
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/coroutines/multipleInvokeCalls.kt");
|
||||
|
||||
Reference in New Issue
Block a user