Files
kotlin-fork/compiler/testData/ir/irText/stringPlus.kt
T
Dmitry Petrov 1b018a6ead Desugar basic binary operators (+, -, *, /, %, ..).
Fold String.plus calls to IrStringConcatenationExpression.
2016-10-18 09:08:11 +03:00

3 lines
134 B
Kotlin
Vendored

fun test1(a: String, b: Any) = a + b
fun test2(a: String, b: Int) = a + "+" + b
fun test3(a: String, b: Int) = (a + "+") + (b + 1) + a