blob: 2a4e6eedd79a88e06ab8182aeec0b91b64473426 [file]
Resolve target: fun foo(): kotlin.Unit
----------------------------------------------
class C {
fun foo(){}
}
fun Any.f() {
if (this !is C) return
this.<caret>foo()
}