blob: 7bf40f89a0d94b1f223299c4c2c898ecb59e3046 [file] [log] [blame]
fun main() {
val anchor = owner.firstChild!!.
siblings(forward = true).
dropWhile { it is PsiComment || it is PsiWhiteSpace }
val s = foo() ?:
bar
val s = foo()?.
bar
val s = "foo"
+ "bar"
val s = true
&& false
}