Files
kotlin-fork/idea/testData/intentions/convertToStringTemplate/tricky.kt
T
Valentin Kipyatkov 94480e3d5c Renamed in test data
2015-04-16 22:00:53 +03:00

6 lines
137 B
Kotlin
Vendored

fun compute1(): Int = 777
fun main(args: Array<String>){
val a = "a"
"a = " + a +<caret> ", b = " + (compute1() + 222) + " :)"
}