ebe3619251
Add intention for single-line lambda <-> multi-line lambda conversion #KT-33384 Fixed
6 lines
113 B
Plaintext
Vendored
6 lines
113 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun test(list: List<Pair<String, Int>>) {
|
|
list.forEach { (s, _) ->
|
|
println(s)
|
|
}
|
|
} |