Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
surroundWithNullCheck
/
argumentNullable.kt
blob: 13ffb3039c586665f168abe5a16e38f6345cf564 [
file
] [
log
] [
blame
]
// "Surround with null check" "true"
fun foo
(
x
:
String
?)
{
bar
(<
caret
>
x
)
}
fun bar
(
s
:
String
)
=
s
.
hashCode
()