Format spaces inside curly braces in string template

Fixes #KT-12791
This commit is contained in:
Kirill Rakhman
2016-06-20 19:34:44 +02:00
committed by Nikolay Krasko
parent 655fc45a87
commit ae83330679
4 changed files with 15 additions and 0 deletions
@@ -0,0 +1,3 @@
fun foo() {
"${1}"
}
@@ -0,0 +1,3 @@
fun foo() {
"${ 1 }"
}