Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/expresssions/invoke/simple.kt
T
2020-12-16 19:52:30 +03:00

8 lines
108 B
Kotlin
Vendored

class Simple {
operator fun invoke(): String = "invoke"
}
fun test(s: Simple) {
val result = s()
}