Files
kotlin-fork/js/js.translator/testData/expression/invoke/cases/invokeWithReceiverArgument.kt
T
2014-03-20 10:06:00 +04:00

7 lines
91 B
Kotlin

package foo
fun Int.invoke(x: Int) = this + x
fun box(): Boolean {
return 1(2) == 3
}