Files
kotlin-fork/idea/testData/intentions/invertIfCondition/endOfLineCommentBug.kt
T
2016-04-07 18:50:30 +03:00

4 lines
102 B
Kotlin
Vendored

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