In Android Studio, programming in Kotlin, if you write:
val t = listOf("A","B") + listOf("C","D")
everything is fine and dandy. However, if you write:
val t = listOf("A","B")
+ listOf("C","D")
the IDE will report a "Unresolved reference" in the plus sign. The compiler also won't compile. Why is the line break meaningful in this case? Am I missing something?