Allow newline before : as as? ?: || &&

This commit is contained in:
Andrey Breslav
2013-07-11 22:13:59 +04:00
parent 320ed44e43
commit d2b1b2e549
3 changed files with 99 additions and 1 deletions
@@ -8,4 +8,29 @@ fun test() {
str
?.length
str
: String
str
as String
str
as? String
str
?: foo
true
|| false
false
&& true
}