Files
kotlin-fork/compiler/testData/psi/NewLinesValidOperations.kt
T
2013-09-17 18:10:00 +04:00

36 lines
250 B
Kotlin

fun test() {
val str = ""
str
.length
str
?.length
str
: String
str
as String
str
as? String
str
?: foo
true
|| false
false
&& true
}