Files
kotlin-fork/idea/testData/intentions/operatorToFunction/binaryEqEqNotNullInLeftSide.kt
T
2017-12-28 20:31:38 +03:00

7 lines
100 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun test(x: String?) {
if (null <caret>!= x) {
x.length
}
}