Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
surroundWithNullCheck
/
invokeUnsafe.kt.after
blob: 969fc38fe3104075315f53603a0dba2fb158a954 [
file
] [
log
] [
blame
]
// "Surround with null check" "true"
operator
fun
Int
.
invoke
()
=
this
fun foo
(
arg
:
Int
?)
{
if
(
arg
!=
null
)
{
arg
()
}
}