Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
invertIfCondition
/
endOfLineCommentBug.kt
blob: 93bf757e59d8c8785ad696adbd6727303613b7da [
file
] [
log
] [
blame
]
fun foo
(
p
:
String
?):
Int
?
{
<caret>
if
(
p
==
null
)
return
null
return
p
.
hashCode
()
// comment
}