Files
kotlin-fork/j2k/tests/testData/ast/prefixOperator/nullableIf.kt
T

3 lines
46 B
Kotlin

var s: String? = null
if (!s?.isEmpty()!!) {
}