11044a3ab5
#KT-31749 Fixed
6 lines
120 B
Plaintext
Vendored
6 lines
120 B
Plaintext
Vendored
// "Surround with null check" "true"
|
|
fun test(a: String, b: List<String>?) {
|
|
if (b != null) {
|
|
a in b
|
|
}
|
|
} |