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

9 lines
107 B
Kotlin
Vendored

class Foo {
fun foo() {}
}
fun Foo?.test() {
<caret>if (this@test != null) {
foo()
}
}