Files
kotlin/idea/testData/codeInsight/outOfBlock/WholeFileChanged.kt
Mikhail Glukhikh dafb52a44a CodeBlockModification...: count file as changed when no changed elements
It means that root PSI (KtFile itself) is changed

So #KT-19726 Fixed
So #KT-20157 Fixed
2017-09-12 17:28:32 +03:00

13 lines
223 B
Kotlin
Vendored

// TRUE
// SKIP_ANALYZE_CHECK
fun test() {<caret>
val someThing: Any? = null
val otherThing: Any? = null
if (!(someThing?.equals(otherThing) ?: otherThing == null)) {
// Some comment
}
// TYPE: }