Files
kotlin-fork/idea/testData/quickfix/surroundWithNullCheck/in.kt.after
T
2020-08-19 14:37:24 +03:00

6 lines
120 B
Plaintext
Vendored

// "Surround with null check" "true"
fun test(a: String, b: List<String>?) {
if (b != null) {
a in b
}
}