blob: 381cc7938311fd00b223a2b01686efd3e34297c8 [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
val d = 1 +
-1
val d = 1
+ -1
}