Do not box primitives in a single-entry string template expression

This commit is contained in:
Mikhail Zarechenskiy
2018-07-20 00:04:00 +03:00
parent 045e3f53b0
commit 9aa4247065
3 changed files with 15 additions and 1 deletions
@@ -2747,6 +2747,11 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
public void testPrimitiveToString() throws Exception {
runTest("compiler/testData/codegen/bytecodeText/stringOperations/primitiveToString.kt");
}
@TestMetadata("primitivesAsStringTemplates.kt")
public void testPrimitivesAsStringTemplates() throws Exception {
runTest("compiler/testData/codegen/bytecodeText/stringOperations/primitivesAsStringTemplates.kt");
}
}
@TestMetadata("compiler/testData/codegen/bytecodeText/varargs")