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

8 lines
115 B
Plaintext
Vendored

// WITH_RUNTIME
val x = hashSetOf("abc").also { hashSet ->
hashSet.forEach {
println(hashSet)
}
}