Test for KT-7222 Redundant boxing on toString call

#KT-7222 Fixed
This commit is contained in:
Michael Bogdanov
2015-04-04 14:22:38 +03:00
parent 0efe8890b8
commit c63ac3e30a
2 changed files with 20 additions and 0 deletions
@@ -687,6 +687,12 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/codegen/bytecodeText/stringOperations/plusAssign.kt");
doTest(fileName);
}
@TestMetadata("primitiveToString.kt")
public void testPrimitiveToString() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/codegen/bytecodeText/stringOperations/primitiveToString.kt");
doTest(fileName);
}
}
@TestMetadata("compiler/testData/codegen/bytecodeText/when")