7 lines
87 B
Kotlin
Vendored
7 lines
87 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun foo() {
|
|
var s: String by lazy { "Hello!" }
|
|
s.hashCode()
|
|
}
|