blob: db1411146f8277716ea58360a8b6b1c5cd418937 [file]
class C {
fun foo(){}
}
fun Any.f() {
if (this !is C) return
this.<caret>foo()
}