Files
kotlin-fork/compiler/testData/psi/NewLinesValidOperations.kt
T
2015-10-12 11:11:23 +02:00

32 lines
223 B
Kotlin
Vendored

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