Multiline string enter handler: do not insert 'trimIndent()' in const (KT-34785)

#KT-34785 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-11-07 17:55:38 +09:00
committed by Nikolay Krasko
parent ce0fb662c0
commit 58fb1dede3
3 changed files with 15 additions and 1 deletions
@@ -0,0 +1,9 @@
object O {
const val s = """<caret>"""
}
//-----
object O {
const val s = """
<caret>
"""
}