Files
kotlin/compiler/testData/codegen/script/topLevelFunctionClosure.ktscript
2012-05-30 19:47:42 +04:00

8 lines
62 B
Plaintext

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