Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/callResolution/objectInvoke.kt
T
2020-04-02 12:10:50 +03:00

8 lines
83 B
Kotlin
Vendored

object Bar {
operator fun invoke(x: String) {}
}
fun foo() {
Bar("asd")
}