Added String Concat -> Interpolation Intention (KT-4750)

This commit is contained in:
Zack Grannan
2014-05-05 10:37:24 -07:00
committed by Nikolay Krasko
parent 380f1875b8
commit 42f186b33f
60 changed files with 493 additions and 8 deletions
@@ -0,0 +1,5 @@
fun compute1(): Int = 777
fun main(args: Array<String>){
val a = "a"
"a = " + a +<caret> ", b = " + (compute1() + 222) + " :)"
}