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

6 lines
125 B
Plaintext

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