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

7 lines
72 B
Plaintext
Vendored

class Foo {
fun foo() {}
}
fun Foo?.test() {
this@test?.foo()
}