blob: 693a372e2739efaac2b497d9ef099f54461d7312 [file]
class B(val n: Int) {
operator fun <caret>invoke(i: Int){}
}
fun f() = B(1)
fun test() {
f(1).invoke(2)
f(2)(2)
}