JVM_IR fix string concatenation performance issues

KT-50080 KT-50084 KT-50140
This commit is contained in:
Dmitry Petrov
2021-12-08 18:09:52 +03:00
committed by TeamCityServer
parent fa41e0f5a9
commit 3017397960
18 changed files with 451 additions and 34 deletions
+3
View File
@@ -0,0 +1,3 @@
fun <T : String> concat4(x: T) = x + "K"
fun box() = concat4("O")