K1: introduce BUILDER_INFERENCE_STUB_PARAMETER_TYPE to prevent compiler crashes

This diagnostic is reported in rare situations when
StubTypeForBuilderInference is kept as a parameter type
of for loop or lambda. Before this commit, we had in K1
"Could not load module <error module>" from IrLinker instead.

Related to: KT-52757, KT-53109, KT-63841, KT-64066
#KT-53478 Fixed
This commit is contained in:
Mikhail Glukhikh
2024-02-26 10:06:29 +01:00
committed by Space Team
parent 6f6e37f552
commit 678816f9e8
44 changed files with 554 additions and 15 deletions
@@ -3190,6 +3190,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
runTest("compiler/testData/codegen/box/builderInference/issues/kt53422b.kt");
}
@TestMetadata("kt53478.kt")
public void testKt53478() {
runTest("compiler/testData/codegen/box/builderInference/issues/kt53478.kt");
}
@TestMetadata("kt53553.kt")
public void testKt53553() {
runTest("compiler/testData/codegen/box/builderInference/issues/kt53553.kt");
@@ -3334,6 +3339,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
public void testKt63840c() {
runTest("compiler/testData/codegen/box/builderInference/issues/kt63840c.kt");
}
@TestMetadata("kt64066.kt")
public void testKt64066() {
runTest("compiler/testData/codegen/box/builderInference/issues/kt64066.kt");
}
}
@TestMetadata("compiler/testData/codegen/box/builderInference/oneParameter")