mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-07 00:21:28 +00:00
11 lines
124 B
Kotlin
Vendored
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 |