Files
kotlin-fork/idea/testData/intentions/removeUnnecessaryParentheses/lambda.kt
T

9 lines
88 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun main() {
foo()
<caret>({ foo() } )
}
fun foo() {}