Files
kotlin-fork/compiler/testData/ir/closureAnnotator/localFunctions.kt
T
2016-10-18 09:09:02 +03:00

7 lines
159 B
Kotlin
Vendored

fun String.outer(x: Int) {
fun test1(x: Int, y: Int) {
fun test2(x: Int) = this + x + y
test2(y).length + x + y
}
test1(x, x * x)
}