Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
dc4e06c6afe5f8bb2d4b9c834b8eaf190cabe72a
/
.
/
idea
/
testData
/
search
/
references
/
testInvokeFun.kt
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
)
}