Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
surroundWithNullCheck
/
unsafeCallInsideAnonymous.kt
blob: e43823fea583c72c53daef6023200e3812c8bd75 [
file
] [
log
] [
blame
]
// "Surround with null check" "true"
// WITH_RUNTIME
fun
Int
.
bar
()
=
this
fun foo
(
arg
:
Int
?)
{
run
(
fun
()
=
arg
<caret>
.
bar
())
}