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

13 lines
203 B
Kotlin

package codegen.delegatedProperty.lazy
import kotlin.test.*
val lazyValue: String by lazy {
println("computed!")
"Hello"
}
@Test fun runTest() {
println(lazyValue)
println(lazyValue)
}