9 lines
160 B
Kotlin
Vendored
9 lines
160 B
Kotlin
Vendored
package foo
|
|
|
|
operator fun Int.invoke(x: Int) = this + x
|
|
fun box(): String {
|
|
val result = 1(2)
|
|
if (result != 3) return "fail: $result"
|
|
return "OK"
|
|
}
|