Files
kotlin-fork/idea/testData/quickfix/simplifyComparison/doubleNull.kt.after
T
2018-10-11 17:19:10 +03:00

10 lines
114 B
Plaintext
Vendored

// "Simplify comparison" "true"
fun foo(x: String?) {
if (x == null) {
}
else {
}
}
fun bar() {}