Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
surroundWithNullCheck
/
infixUnsafeCall.kt
blob: 57bbbfdc4c2b49d7b3cff80609e8a6aeebc9d9ef [
file
] [
log
] [
blame
]
// "Surround with null check" "true"
infix fun
Int
.
op
(
arg
:
Int
)
=
this
fun foo
(
arg
:
Int
?)
{
arg
<caret>
op
42
}