Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
surroundWithNullCheck
/
simpleUnsafeCall.kt.after
blob: 0b5552adf722777340ae8689b94c3d58829bedfc [
file
] [
log
] [
blame
]
// "Surround with null check" "true"
fun foo
(
arg
:
Int
?)
{
if
(
arg
!=
null
)
{
arg
.
hashCode
()
}
}