Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
codegen
/
bytecodeText
/
stringOperations
/
stringPlus.kt
blob: abdd607d20c9d8582ebede9cf0571804452a8e47 [
file
]
fun f
(
s
:
String
?,
t
:
String
):
String
{
return
s
.
plus
(
t
)
}
fun g
(
s
:
String
,
t
:
Any
?):
String
{
return
"$s$t"
}
fun h
(
s
:
String
,
t
:
Any
?):
String
{
return
s
+
t
}
// 0 INVOKESTATIC kotlin/jvm/internal/Intrinsics.stringPlus