72fb2c0d02
#KT-2242 Fixed
8 lines
188 B
Kotlin
8 lines
188 B
Kotlin
fun test(some: (Int) -> Int) {
|
|
}
|
|
|
|
fun foo() = test() {it}
|
|
val function = test {(a: Int) -> a}
|
|
val function1 = test {a : Int -> a}
|
|
|
|
// SET_TRUE: INSERT_WHITESPACES_IN_SIMPLE_ONE_LINE_METHOD |