11 lines
180 B
Plaintext
Vendored
11 lines
180 B
Plaintext
Vendored
Resolve target: fun foo(): kotlin.Unit
|
|
----------------------------------------------
|
|
class C {
|
|
fun foo(){}
|
|
}
|
|
|
|
fun Any.f() {
|
|
if (this !is C) return
|
|
this.<caret>foo()
|
|
}
|