Fix problem with appending literal to variable omitting braces #KT-13336 Fixed

This commit is contained in:
shiraji
2016-08-12 20:26:46 +03:00
committed by Mikhail Glukhikh
parent 223fd9fad0
commit 42969271ab
8 changed files with 54 additions and 5 deletions
@@ -0,0 +1,4 @@
fun foo() {
val prefix = "prefix"
val nv2 = prefix + <caret>"postfix"
}