"Indent raw string" intention: do not suggest in const

#KT-34784 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-11-07 17:30:19 +09:00
committed by Mikhail Glukhikh
parent 688a2185fa
commit 39db76b2ab
4 changed files with 28 additions and 0 deletions
@@ -0,0 +1,7 @@
// IS_APPLICABLE: false
@Ann("""foo
bar
baz"""<caret>)
class Test
annotation class Ann(val s: String)
+6
View File
@@ -0,0 +1,6 @@
// IS_APPLICABLE: false
object Test {
const val foo = <caret>"""foo
bar
baz"""
}