8 lines
78 B
Kotlin
8 lines
78 B
Kotlin
class Foo() {
|
|
fun Int.invoke() {}
|
|
}
|
|
|
|
fun bar(f: Foo) {
|
|
1.f<caret>()
|
|
}
|