Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b7de3709e46eb073303a1e8aac4c22656e4f2863
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
stringOperations
/
interpolation.kt
blob: de15a668890160260e6bea896e27f3bafc716442 [
file
]
class
A
()
{
override
fun toString
():
String
{
return
"A"
}
}
fun box
()
:
String
{
val p
=
1
val s
=
"${p}${2}${3}${4L}${5.0}${6F}${7}${A()}"
return
"OK"
}
// 1 NEW java/lang/StringBuilder