Files
kotlin-fork/idea/testData/intentions/convertToConcatenatedStringIntention/embeddedIf.kt.after
T
2014-05-23 16:27:46 +04:00

4 lines
111 B
Plaintext

fun main(args: Array<String>) {
val x = (if (true) 42 else 12).toString() + "abc" + if (true) 12 else 42
}