Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToSafeAccess/conditionInParentheses.kt
T

9 lines
107 B
Kotlin
Vendored

class Some {
fun bar() {}
}
fun Some?.foo() {
<caret>if (((this) != null)) {
bar()
}
}