KT-15553 Support compile constant for "Copy concatenation text to clipboard"

#KT-15553 Fixed
This commit is contained in:
shiraji
2017-01-14 02:31:25 +09:00
committed by Mikhail Glukhikh
parent 909007d984
commit d9ec8a92f2
11 changed files with 79 additions and 11 deletions
@@ -0,0 +1,7 @@
// WITH_RUNTIME
val foo = "aaa"
val bar = "bbb"
fun bar2() = "will be ignored"
val test = "foo$foo$bar" + "${bar}${bar2()}bar"