14 lines
173 B
Plaintext
14 lines
173 B
Plaintext
class Foo() {
|
|
fun Int.invoke() {}
|
|
}
|
|
|
|
fun bar(f: Foo) {
|
|
1.f<caret>()
|
|
}
|
|
|
|
|
|
Resolved call:
|
|
|
|
Explicit receiver kind = BOTH_RECEIVERS
|
|
This object = f
|
|
Receiver argument = 1 |