mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
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()) {
|
|
|
|
}
|
|
}
|
|
} |