10 lines
151 B
Plaintext
Vendored
10 lines
151 B
Plaintext
Vendored
// "Surround with null check" "true"
|
|
// WITH_RUNTIME
|
|
|
|
fun foz(arg: String?) {
|
|
if (arg != null) {
|
|
if (arg.isNotEmpty()) {
|
|
|
|
}
|
|
}
|
|
} |