Kotlin/kotlin-spec

Grammar: dot and save navigation operators allow for newlines, while reference operator does not

belyaev-mikhail opened this issue · 1 comments

This is correct:

x
.y
.z
.f

This is not:

x
::y
::z
::f

(well, it is correct, but is not a navigation chain as the first example)