Files
kotlin-fork/idea/testData/inspections/canBeVal/withReadOnlyDelegate.kt
T

7 lines
87 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {
var s: String by lazy { "Hello!" }
s.hashCode()
}