blob: a7fa855714fdb93712c781ed249b9bcc2bc8d677 [file] [log] [blame]
// "Surround with null check" "true"
// WITH_RUNTIME
fun foz(arg: String?) {
if (arg != null) {
if (arg.isNotEmpty()) {
}
}
}