Don't indent to unrelated closing quote (KT-17894)

#KT-17894 Fixed
This commit is contained in:
Nikolay Krasko
2017-05-15 20:08:59 +03:00
parent e211980df4
commit 0551659281
3 changed files with 26 additions and 8 deletions
@@ -0,0 +1,14 @@
fun test = """
{
abc
abc {<caret>
}
""".trimIndent()
//-----
fun test = """
{
abc
abc {
<caret>
}
""".trimIndent()