e3b37f9219
#KT-13643 Fixed
11 lines
128 B
Kotlin
Vendored
11 lines
128 B
Kotlin
Vendored
class B(val n: Int) {
|
|
operator fun <caret>invoke(i: Int){}
|
|
}
|
|
|
|
fun f() = B(1)
|
|
|
|
fun test() {
|
|
f(1).invoke(2)
|
|
f(2)(2)
|
|
}
|