Files
kotlin-fork/idea/testData/refactoring/introduceVariable/TwoExplicitReceivers.kt.after
T

13 lines
168 B
Plaintext
Vendored

class Bar {
}
class Foo() {
fun Bar.invoke(): Int = 1
}
fun main(args: Array<String>) {
val f = Foo()
val f1 = Bar().f()
println(f1)
println(f1)
}