Files
kotlin-fork/idea/testData/inspectionsLocal/scopeFunctions/applyToAlso/innerLambda.kt
T
Dmitry Jemerov 60874f29fe Inspection for scope functions conversion
#KT-17047 Fixed
2018-01-15 15:37:36 +01:00

9 lines
123 B
Kotlin
Vendored

// WITH_RUNTIME
// FIX: Convert to 'also'
val x = "".also {
"".<caret>apply {
this.length + it.length
}
}