blob: 93bf757e59d8c8785ad696adbd6727303613b7da [file] [log] [blame]
fun foo(p: String?): Int? {
<caret>if (p == null) return null
return p.hashCode() // comment
}