Files
kotlin-fork/backend.native/tests/runtime/memory/escape1.kt
T
2017-10-20 18:25:05 +03:00

18 lines
205 B
Kotlin

package runtime.memory.escape1
import kotlin.test.*
class B(val s: String)
class A {
val b = B("zzz")
}
fun foo(): B {
val a = A()
return a.b
}
@Test fun runTest() {
println(foo().s)
}