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

7 lines
68 B
Plaintext
Vendored

class Some {
fun bar() {}
}
fun Some?.foo() {
this?.bar()
}