9 lines
130 B
Kotlin
Vendored
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)() |