Files
kotlin-fork/idea/testData/inspectionsLocal/whenWithOnlyElse/subjectVariable/singleElse/noReference.kt.after
T

11 lines
137 B
Plaintext
Vendored

// WITH_RUNTIME
fun test() {
run {
val a = create()
use("")
}
}
fun create(): String = ""
fun use(s: String) {}