Added ConvertToConcatenatedStringIntention

This commit is contained in:
Zack Grannan
2014-05-15 22:16:22 -07:00
committed by Nikolay Krasko
parent 8e2878a6eb
commit b2858e5b82
54 changed files with 416 additions and 1 deletions
@@ -0,0 +1,5 @@
// WITH_RUNTIME
fun main(args: Array<String>){
val x = mapOf("a" to "b")
val y = "abcd" + x["a"]
}