ebe3619251
Add intention for single-line lambda <-> multi-line lambda conversion #KT-33384 Fixed
8 lines
156 B
Kotlin
Vendored
8 lines
156 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
// WITH_RUNTIME
|
|
fun test(list: List<String>) {
|
|
list.forEach { item ->
|
|
println(item)
|
|
println(item)
|
|
}<caret>
|
|
} |