Files
kotlin-fork/compiler/testData/codegen/script/parameterClosure.ktscript
T
2014-03-02 19:55:26 +04:00

8 lines
84 B
Plaintext

// param: x: kotlin.Int: 10
fun addX(y: Int) = x + y
addX(3)
// expected: rv: 13