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

10 lines
131 B
Kotlin
Vendored

class My(var x: Int) {
operator fun invoke() = x
fun foo() {}
fun copy() = My(x)
}
fun testInvoke(): Int = My(13)()