Files
kotlin-fork/idea/testData/formatter/ReferenceExpressionFunctionLiteral.after.kt
T

6 lines
161 B
Kotlin
Vendored

fun f() {
array(1, 2, 3).map { v -> v }
array(1, 2, 3).map<Int> { v -> v }
array(1, 2, 3).map() { v -> v }
array(1, 2, 3).map<Int>() { v -> v }
}