Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
stringOperations
/
partiallyConstConcat.kt
blob: 78c2e238cd4cb6f02ef695d5a21be516d635b40c [
file
]
fun foo
(
a
:
String
,
b
:
String
)
{
val s
=
a
+
"1"
+
"2"
+
3
+
4L
+
b
+
5.0
+
6F
+
'7'
val c
=
"$a${"
1
"}2${3}${4L}$b${5.0}${6F}${'7'}"
}
// 2 NEW java/lang/StringBuilder
// 2 LDC "1234"
// 2 LDC "5.06.07"