Files
kotlin-fork/idea/testData/inspectionsLocal/scopeFunctions/applyToAlso/thisInOperation.kt.after
T
2018-03-16 12:17:24 +03:00

9 lines
109 B
Plaintext
Vendored

// WITH_RUNTIME
// FIX: Convert to 'also'
fun foo() {
"".<caret>also {
println(it + it)
}
}