f0035a7be0
When there is multiline polyadic expression with some operators J2K should keep surrounding parentheses, otherwise operators will be dangling due resolved to prefix variant #KT-17379 fixed
10 lines
161 B
Kotlin
Vendored
10 lines
161 B
Kotlin
Vendored
object A {
|
|
val TEXT1 = "text1.\n" +
|
|
"text2\n" +
|
|
"text3"
|
|
|
|
|
|
val TEXT2 = ("text1\n"
|
|
+ "text2\n"
|
|
+ "text3")
|
|
} |