fun foo(p: String?): Int? { if (p != null) { return p.hashCode() // comment } return null }