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