10 lines
131 B
Kotlin
Vendored
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)()
|