Files
kotlin-fork/idea/testData/intentions/removeEmptyParenthesesFromLambdaCall/nextLine.kt
T
2018-05-08 18:37:07 +03:00

10 lines
102 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun foo(f: (Int) -> Unit) = f(4)
fun bar() {
foo()<caret>
{
}
}