Files
kotlin-fork/compiler/testData/psi/NewLinesValidOperations.jet
T
2013-07-23 14:21:36 +04:00

36 lines
250 B
Plaintext

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