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

6 lines
157 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 }
}