Files
kotlin/compiler/testData/codegen/script/topLevelFunctionClosure.ktscript
2012-06-05 22:56:26 +04:00

8 lines
66 B
Plaintext

val x = 12
fun foo(y: Int) = x + y
foo(33)
// expected: rv: 45