Files
kotlin/compiler/testData/codegen/script/localFunction.kts
Pavel V. Talanov bdc64f322c Add script codegen tests with package statements
Tests codegen annotating visitor
2015-11-19 22:57:03 +03:00

11 lines
124 B
Kotlin
Vendored

package script
fun f(j: Int): Int {
fun g(i: Int) = i * i *j
return g(g(j))
}
val rv = f(2)
// expected: rv: 128