Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
surroundWithNullCheck
/
nullableInCondition.kt.after
blob: a7fa855714fdb93712c781ed249b9bcc2bc8d677 [
file
] [
log
] [
blame
]
// "Surround with null check" "true"
// WITH_RUNTIME
fun foz
(
arg
:
String
?)
{
if
(
arg
!=
null
)
{
if
(
arg
.
isNotEmpty
())
{
}
}
}