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

7 lines
83 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {
var s: String by Delegates.notNull()
s = ""
}