Files
kotlin-fork/backend.native/tests/codegen/function/localFunction2.kt
T
2017-10-20 18:25:05 +03:00

20 lines
311 B
Kotlin

package codegen.function.localFunction2
import kotlin.test.*
@Test fun runTest() {
var a = 0
fun local() {
class A {
val b = 0
fun f() {
a = b
}
}
fun local2() : A {
return A()
}
}
println("OK")
}