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