Fix inline class coercion in string template with StringBuilder.append
Inline class values with array as a carrier type were not boxed. #KT-27113
This commit is contained in:
+10
@@ -10399,6 +10399,16 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/inlineClasses/kt27096_reference.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt27113.kt")
|
||||
public void testKt27113() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/inlineClasses/kt27113.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt27113a.kt")
|
||||
public void testKt27113a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/inlineClasses/kt27113a.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt27132.kt")
|
||||
public void testKt27132() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/inlineClasses/kt27132.kt");
|
||||
|
||||
+10
@@ -11444,6 +11444,16 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
|
||||
runTest("compiler/testData/codegen/box/inlineClasses/kt27096_reference.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt27113.kt")
|
||||
public void testKt27113() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/inlineClasses/kt27113.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt27113a.kt")
|
||||
public void testKt27113a() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/inlineClasses/kt27113a.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("kt27132.kt")
|
||||
public void testKt27132() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/inlineClasses/kt27132.kt");
|
||||
|
||||
Reference in New Issue
Block a user