Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/arguments/invoke.kt
T
2020-03-19 09:51:01 +03:00

9 lines
130 B
Kotlin
Vendored

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