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

6 lines
118 B
Plaintext
Vendored

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