Files
kotlin-fork/idea/testData/formatter/callChain/KT22115.kt
T
2018-02-09 10:48:48 +01:00

10 lines
167 B
Kotlin
Vendored

private fun String.foo(): List<String> = emptyList()
fun test(s: String) {
s.foo().flatMap { m ->
m.foo().map { e ->
e to m
}
}
}